Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 1 | // Automatic generation of D-Bus interface mock proxies for: |
| 2 | // - org.chromium.debugd |
| 3 | #ifndef ____CHROMEOS_DBUS_BINDING____________________BUILD_LINK_VAR_CACHE_PORTAGE_CHROMEOS_BASE_DEBUGD_CLIENT_OUT_DEFAULT_GEN_INCLUDE_DEBUGD_DBUS_PROXY_MOCKS_H |
| 4 | #define ____CHROMEOS_DBUS_BINDING____________________BUILD_LINK_VAR_CACHE_PORTAGE_CHROMEOS_BASE_DEBUGD_CLIENT_OUT_DEFAULT_GEN_INCLUDE_DEBUGD_DBUS_PROXY_MOCKS_H |
| 5 | #include <string> |
| 6 | #include <vector> |
| 7 | |
| 8 | #include <base/callback_forward.h> |
| 9 | #include <base/logging.h> |
| 10 | #include <base/macros.h> |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 11 | #include <brillo/any.h> |
| 12 | #include <brillo/errors/error.h> |
| 13 | #include <brillo/variant_dictionary.h> |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 14 | #include <gmock/gmock.h> |
| 15 | |
| 16 | #include "debugd/dbus-proxies.h" |
| 17 | |
| 18 | namespace org { |
| 19 | namespace chromium { |
| 20 | |
| 21 | // Mock object for debugdProxyInterface. |
| 22 | class debugdProxyMock : public debugdProxyInterface { |
| 23 | public: |
| 24 | debugdProxyMock() = default; |
| 25 | |
| 26 | MOCK_METHOD6(PingStart, |
| 27 | bool(const dbus::FileDescriptor& /*in_outfd*/, |
| 28 | const std::string& /*in_destination*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 29 | const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 30 | std::string* /*out_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 31 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 32 | int /*timeout_ms*/)); |
| 33 | MOCK_METHOD6(PingStartAsync, |
| 34 | void(const dbus::FileDescriptor& /*in_outfd*/, |
| 35 | const std::string& /*in_destination*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 36 | const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 37 | const base::Callback<void(const std::string& /*handle*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 38 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 39 | int /*timeout_ms*/)); |
| 40 | MOCK_METHOD3(PingStop, |
| 41 | bool(const std::string& /*in_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 42 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 43 | int /*timeout_ms*/)); |
| 44 | MOCK_METHOD4(PingStopAsync, |
| 45 | void(const std::string& /*in_handle*/, |
| 46 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 47 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 48 | int /*timeout_ms*/)); |
| 49 | MOCK_METHOD3(SystraceStart, |
| 50 | bool(const std::string& /*in_categories*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 51 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 52 | int /*timeout_ms*/)); |
| 53 | MOCK_METHOD4(SystraceStartAsync, |
| 54 | void(const std::string& /*in_categories*/, |
| 55 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 56 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 57 | int /*timeout_ms*/)); |
| 58 | MOCK_METHOD3(SystraceStop, |
| 59 | bool(const dbus::FileDescriptor& /*in_outfd*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 60 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 61 | int /*timeout_ms*/)); |
| 62 | MOCK_METHOD4(SystraceStopAsync, |
| 63 | void(const dbus::FileDescriptor& /*in_outfd*/, |
| 64 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 65 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 66 | int /*timeout_ms*/)); |
| 67 | MOCK_METHOD3(SystraceStatus, |
| 68 | bool(std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 69 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 70 | int /*timeout_ms*/)); |
| 71 | MOCK_METHOD3(SystraceStatusAsync, |
| 72 | void(const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 73 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 74 | int /*timeout_ms*/)); |
| 75 | MOCK_METHOD6(TracePathStart, |
| 76 | bool(const dbus::FileDescriptor& /*in_outfd*/, |
| 77 | const std::string& /*in_destination*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 78 | const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 79 | std::string* /*out_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 80 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 81 | int /*timeout_ms*/)); |
| 82 | MOCK_METHOD6(TracePathStartAsync, |
| 83 | void(const dbus::FileDescriptor& /*in_outfd*/, |
| 84 | const std::string& /*in_destination*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 85 | const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 86 | const base::Callback<void(const std::string& /*handle*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 87 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 88 | int /*timeout_ms*/)); |
| 89 | MOCK_METHOD3(TracePathStop, |
| 90 | bool(const std::string& /*in_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 91 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 92 | int /*timeout_ms*/)); |
| 93 | MOCK_METHOD4(TracePathStopAsync, |
| 94 | void(const std::string& /*in_handle*/, |
| 95 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 96 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 97 | int /*timeout_ms*/)); |
| 98 | MOCK_METHOD4(GetRoutes, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 99 | bool(const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 100 | std::vector<std::string>* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 101 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 102 | int /*timeout_ms*/)); |
| 103 | MOCK_METHOD4(GetRoutesAsync, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 104 | void(const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 105 | const base::Callback<void(const std::vector<std::string>& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 106 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 107 | int /*timeout_ms*/)); |
| 108 | MOCK_METHOD3(GetModemStatus, |
| 109 | bool(std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 110 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 111 | int /*timeout_ms*/)); |
| 112 | MOCK_METHOD3(GetModemStatusAsync, |
| 113 | void(const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 114 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 115 | int /*timeout_ms*/)); |
| 116 | MOCK_METHOD4(RunModemCommand, |
| 117 | bool(const std::string& /*in_command*/, |
| 118 | std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 119 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 120 | int /*timeout_ms*/)); |
| 121 | MOCK_METHOD4(RunModemCommandAsync, |
| 122 | void(const std::string& /*in_command*/, |
| 123 | const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 124 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 125 | int /*timeout_ms*/)); |
| 126 | MOCK_METHOD3(GetNetworkStatus, |
| 127 | bool(std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 128 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 129 | int /*timeout_ms*/)); |
| 130 | MOCK_METHOD3(GetNetworkStatusAsync, |
| 131 | void(const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 132 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 133 | int /*timeout_ms*/)); |
| 134 | MOCK_METHOD3(GetWiMaxStatus, |
| 135 | bool(std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 136 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 137 | int /*timeout_ms*/)); |
| 138 | MOCK_METHOD3(GetWiMaxStatusAsync, |
| 139 | void(const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 140 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 141 | int /*timeout_ms*/)); |
| 142 | MOCK_METHOD7(GetPerfOutput, |
| 143 | bool(uint32_t /*in_duration_sec*/, |
| 144 | const std::vector<std::string>& /*in_perf_args*/, |
| 145 | int32_t* /*out_status*/, |
| 146 | std::vector<uint8_t>* /*out_perf_data*/, |
| 147 | std::vector<uint8_t>* /*out_perf_stat*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 148 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 149 | int /*timeout_ms*/)); |
| 150 | MOCK_METHOD5(GetPerfOutputAsync, |
| 151 | void(uint32_t /*in_duration_sec*/, |
| 152 | const std::vector<std::string>& /*in_perf_args*/, |
| 153 | const base::Callback<void(int32_t /*status*/, const std::vector<uint8_t>& /*perf_data*/, const std::vector<uint8_t>& /*perf_stat*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 154 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 155 | int /*timeout_ms*/)); |
| 156 | MOCK_METHOD6(GetRandomPerfOutput, |
| 157 | bool(uint32_t /*in_duration_sec*/, |
| 158 | int32_t* /*out_status*/, |
| 159 | std::vector<uint8_t>* /*out_perf_data*/, |
| 160 | std::vector<uint8_t>* /*out_perf_stat*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 161 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 162 | int /*timeout_ms*/)); |
| 163 | MOCK_METHOD4(GetRandomPerfOutputAsync, |
| 164 | void(uint32_t /*in_duration_sec*/, |
| 165 | const base::Callback<void(int32_t /*status*/, const std::vector<uint8_t>& /*perf_data*/, const std::vector<uint8_t>& /*perf_stat*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 166 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 167 | int /*timeout_ms*/)); |
| 168 | MOCK_METHOD4(GetRichPerfData, |
| 169 | bool(uint32_t /*in_duration_sec*/, |
| 170 | std::vector<uint8_t>* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 171 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 172 | int /*timeout_ms*/)); |
| 173 | MOCK_METHOD4(GetRichPerfDataAsync, |
| 174 | void(uint32_t /*in_duration_sec*/, |
| 175 | const base::Callback<void(const std::vector<uint8_t>& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 176 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 177 | int /*timeout_ms*/)); |
| 178 | MOCK_METHOD3(GetDebugLogs, |
| 179 | bool(const dbus::FileDescriptor& /*in_outfd*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 180 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 181 | int /*timeout_ms*/)); |
| 182 | MOCK_METHOD4(GetDebugLogsAsync, |
| 183 | void(const dbus::FileDescriptor& /*in_outfd*/, |
| 184 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 185 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 186 | int /*timeout_ms*/)); |
| 187 | MOCK_METHOD4(DumpDebugLogs, |
| 188 | bool(bool /*in_is_compressed*/, |
| 189 | const dbus::FileDescriptor& /*in_outfd*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 190 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 191 | int /*timeout_ms*/)); |
| 192 | MOCK_METHOD5(DumpDebugLogsAsync, |
| 193 | void(bool /*in_is_compressed*/, |
| 194 | const dbus::FileDescriptor& /*in_outfd*/, |
| 195 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 196 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 197 | int /*timeout_ms*/)); |
| 198 | MOCK_METHOD3(SetDebugMode, |
| 199 | bool(const std::string& /*in_subsystem*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 200 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 201 | int /*timeout_ms*/)); |
| 202 | MOCK_METHOD4(SetDebugModeAsync, |
| 203 | void(const std::string& /*in_subsystem*/, |
| 204 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 205 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 206 | int /*timeout_ms*/)); |
| 207 | MOCK_METHOD4(GetLog, |
| 208 | bool(const std::string& /*in_log*/, |
| 209 | std::string* /*out_contents*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 210 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 211 | int /*timeout_ms*/)); |
| 212 | MOCK_METHOD4(GetLogAsync, |
| 213 | void(const std::string& /*in_log*/, |
| 214 | const base::Callback<void(const std::string& /*contents*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 215 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 216 | int /*timeout_ms*/)); |
| 217 | MOCK_METHOD3(GetAllLogs, |
| 218 | bool(std::map<std::string, std::string>* /*out_logs*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 219 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 220 | int /*timeout_ms*/)); |
| 221 | MOCK_METHOD3(GetAllLogsAsync, |
| 222 | void(const base::Callback<void(const std::map<std::string, std::string>& /*logs*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 223 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 224 | int /*timeout_ms*/)); |
| 225 | MOCK_METHOD3(GetFeedbackLogs, |
| 226 | bool(std::map<std::string, std::string>* /*out_logs*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 227 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 228 | int /*timeout_ms*/)); |
| 229 | MOCK_METHOD3(GetFeedbackLogsAsync, |
| 230 | void(const base::Callback<void(const std::map<std::string, std::string>& /*logs*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 231 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 232 | int /*timeout_ms*/)); |
| 233 | MOCK_METHOD3(GetUserLogFiles, |
| 234 | bool(std::map<std::string, std::string>* /*out_user_log_files*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 235 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 236 | int /*timeout_ms*/)); |
| 237 | MOCK_METHOD3(GetUserLogFilesAsync, |
| 238 | void(const base::Callback<void(const std::map<std::string, std::string>& /*user_log_files*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 239 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 240 | int /*timeout_ms*/)); |
| 241 | MOCK_METHOD3(GetExample, |
| 242 | bool(std::string* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 243 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 244 | int /*timeout_ms*/)); |
| 245 | MOCK_METHOD3(GetExampleAsync, |
| 246 | void(const base::Callback<void(const std::string& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 247 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 248 | int /*timeout_ms*/)); |
| 249 | MOCK_METHOD3(GetInterfaces, |
| 250 | bool(std::string* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 251 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 252 | int /*timeout_ms*/)); |
| 253 | MOCK_METHOD3(GetInterfacesAsync, |
| 254 | void(const base::Callback<void(const std::string& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 255 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 256 | int /*timeout_ms*/)); |
| 257 | MOCK_METHOD4(TestICMP, |
| 258 | bool(const std::string& /*in_host*/, |
| 259 | std::string* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 260 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 261 | int /*timeout_ms*/)); |
| 262 | MOCK_METHOD4(TestICMPAsync, |
| 263 | void(const std::string& /*in_host*/, |
| 264 | const base::Callback<void(const std::string& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 265 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 266 | int /*timeout_ms*/)); |
| 267 | MOCK_METHOD5(TestICMPWithOptions, |
| 268 | bool(const std::string& /*in_host*/, |
| 269 | const std::map<std::string, std::string>& /*in_options*/, |
| 270 | std::string* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 271 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 272 | int /*timeout_ms*/)); |
| 273 | MOCK_METHOD5(TestICMPWithOptionsAsync, |
| 274 | void(const std::string& /*in_host*/, |
| 275 | const std::map<std::string, std::string>& /*in_options*/, |
| 276 | const base::Callback<void(const std::string& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 277 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 278 | int /*timeout_ms*/)); |
| 279 | MOCK_METHOD4(BatteryFirmware, |
| 280 | bool(const std::string& /*in_option*/, |
| 281 | std::string* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 282 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 283 | int /*timeout_ms*/)); |
| 284 | MOCK_METHOD4(BatteryFirmwareAsync, |
| 285 | void(const std::string& /*in_option*/, |
| 286 | const base::Callback<void(const std::string& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 287 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 288 | int /*timeout_ms*/)); |
| 289 | MOCK_METHOD4(Smartctl, |
| 290 | bool(const std::string& /*in_option*/, |
| 291 | std::string* /*out_result*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 292 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 293 | int /*timeout_ms*/)); |
| 294 | MOCK_METHOD4(SmartctlAsync, |
| 295 | void(const std::string& /*in_option*/, |
| 296 | const base::Callback<void(const std::string& /*result*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 297 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 298 | int /*timeout_ms*/)); |
| 299 | MOCK_METHOD5(MemtesterStart, |
| 300 | bool(const dbus::FileDescriptor& /*in_outfd*/, |
| 301 | uint32_t /*in_memory*/, |
| 302 | std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 303 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 304 | int /*timeout_ms*/)); |
| 305 | MOCK_METHOD5(MemtesterStartAsync, |
| 306 | void(const dbus::FileDescriptor& /*in_outfd*/, |
| 307 | uint32_t /*in_memory*/, |
| 308 | const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 309 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 310 | int /*timeout_ms*/)); |
| 311 | MOCK_METHOD3(MemtesterStop, |
| 312 | bool(const std::string& /*in_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 313 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 314 | int /*timeout_ms*/)); |
| 315 | MOCK_METHOD4(MemtesterStopAsync, |
| 316 | void(const std::string& /*in_handle*/, |
| 317 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 318 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 319 | int /*timeout_ms*/)); |
| 320 | MOCK_METHOD4(BadblocksStart, |
| 321 | bool(const dbus::FileDescriptor& /*in_outfd*/, |
| 322 | std::string* /*out_status*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 323 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 324 | int /*timeout_ms*/)); |
| 325 | MOCK_METHOD4(BadblocksStartAsync, |
| 326 | void(const dbus::FileDescriptor& /*in_outfd*/, |
| 327 | const base::Callback<void(const std::string& /*status*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 328 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 329 | int /*timeout_ms*/)); |
| 330 | MOCK_METHOD3(BadblocksStop, |
| 331 | bool(const std::string& /*in_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 332 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 333 | int /*timeout_ms*/)); |
| 334 | MOCK_METHOD4(BadblocksStopAsync, |
| 335 | void(const std::string& /*in_handle*/, |
| 336 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 337 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 338 | int /*timeout_ms*/)); |
| 339 | MOCK_METHOD6(PacketCaptureStart, |
| 340 | bool(const dbus::FileDescriptor& /*in_statfd*/, |
| 341 | const dbus::FileDescriptor& /*in_outfd*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 342 | const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 343 | std::string* /*out_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 344 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 345 | int /*timeout_ms*/)); |
| 346 | MOCK_METHOD6(PacketCaptureStartAsync, |
| 347 | void(const dbus::FileDescriptor& /*in_statfd*/, |
| 348 | const dbus::FileDescriptor& /*in_outfd*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 349 | const brillo::VariantDictionary& /*in_options*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 350 | const base::Callback<void(const std::string& /*handle*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 351 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 352 | int /*timeout_ms*/)); |
| 353 | MOCK_METHOD3(PacketCaptureStop, |
| 354 | bool(const std::string& /*in_handle*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 355 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 356 | int /*timeout_ms*/)); |
| 357 | MOCK_METHOD4(PacketCaptureStopAsync, |
| 358 | void(const std::string& /*in_handle*/, |
| 359 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 360 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 361 | int /*timeout_ms*/)); |
| 362 | MOCK_METHOD2(LogKernelTaskStates, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 363 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 364 | int /*timeout_ms*/)); |
| 365 | MOCK_METHOD3(LogKernelTaskStatesAsync, |
| 366 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 367 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 368 | int /*timeout_ms*/)); |
| 369 | MOCK_METHOD2(UploadCrashes, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 370 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 371 | int /*timeout_ms*/)); |
| 372 | MOCK_METHOD3(UploadCrashesAsync, |
| 373 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 374 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 375 | int /*timeout_ms*/)); |
| 376 | MOCK_METHOD2(RemoveRootfsVerification, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 377 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 378 | int /*timeout_ms*/)); |
| 379 | MOCK_METHOD3(RemoveRootfsVerificationAsync, |
| 380 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 381 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 382 | int /*timeout_ms*/)); |
| 383 | MOCK_METHOD2(EnableBootFromUsb, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 384 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 385 | int /*timeout_ms*/)); |
| 386 | MOCK_METHOD3(EnableBootFromUsbAsync, |
| 387 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 388 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 389 | int /*timeout_ms*/)); |
| 390 | MOCK_METHOD2(ConfigureSshServer, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 391 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 392 | int /*timeout_ms*/)); |
| 393 | MOCK_METHOD3(ConfigureSshServerAsync, |
| 394 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 395 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 396 | int /*timeout_ms*/)); |
| 397 | MOCK_METHOD4(SetUserPassword, |
| 398 | bool(const std::string& /*in_username*/, |
| 399 | const std::string& /*in_password*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 400 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 401 | int /*timeout_ms*/)); |
| 402 | MOCK_METHOD5(SetUserPasswordAsync, |
| 403 | void(const std::string& /*in_username*/, |
| 404 | const std::string& /*in_password*/, |
| 405 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 406 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 407 | int /*timeout_ms*/)); |
| 408 | MOCK_METHOD2(EnableChromeRemoteDebugging, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 409 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 410 | int /*timeout_ms*/)); |
| 411 | MOCK_METHOD3(EnableChromeRemoteDebuggingAsync, |
| 412 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 413 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 414 | int /*timeout_ms*/)); |
| 415 | MOCK_METHOD3(EnableChromeDevFeatures, |
| 416 | bool(const std::string& /*in_root_password*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 417 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 418 | int /*timeout_ms*/)); |
| 419 | MOCK_METHOD4(EnableChromeDevFeaturesAsync, |
| 420 | void(const std::string& /*in_root_password*/, |
| 421 | const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 422 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 423 | int /*timeout_ms*/)); |
| 424 | MOCK_METHOD3(QueryDevFeatures, |
| 425 | bool(int32_t* /*out_features*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 426 | brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 427 | int /*timeout_ms*/)); |
| 428 | MOCK_METHOD3(QueryDevFeaturesAsync, |
| 429 | void(const base::Callback<void(int32_t /*features*/)>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 430 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 431 | int /*timeout_ms*/)); |
| 432 | MOCK_METHOD2(EnableDevCoredumpUpload, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 433 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 434 | int /*timeout_ms*/)); |
| 435 | MOCK_METHOD3(EnableDevCoredumpUploadAsync, |
| 436 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 437 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 438 | int /*timeout_ms*/)); |
| 439 | MOCK_METHOD2(DisableDevCoredumpUpload, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 440 | bool(brillo::ErrorPtr* /*error*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 441 | int /*timeout_ms*/)); |
| 442 | MOCK_METHOD3(DisableDevCoredumpUploadAsync, |
| 443 | void(const base::Callback<void()>& /*success_callback*/, |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 444 | const base::Callback<void(brillo::Error*)>& /*error_callback*/, |
Alex Deymo | d5561a5 | 2015-09-03 23:17:52 -0700 | [diff] [blame] | 445 | int /*timeout_ms*/)); |
| 446 | |
| 447 | private: |
| 448 | DISALLOW_COPY_AND_ASSIGN(debugdProxyMock); |
| 449 | }; |
| 450 | } // namespace chromium |
| 451 | } // namespace org |
| 452 | |
| 453 | #endif // ____CHROMEOS_DBUS_BINDING____________________BUILD_LINK_VAR_CACHE_PORTAGE_CHROMEOS_BASE_DEBUGD_CLIENT_OUT_DEFAULT_GEN_INCLUDE_DEBUGD_DBUS_PROXY_MOCKS_H |