| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ |
| 6 #define CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ | 6 #define CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 void GetRoutes(bool numeric, | 34 void GetRoutes(bool numeric, |
| 35 bool ipv6, | 35 bool ipv6, |
| 36 const GetRoutesCallback& callback) override; | 36 const GetRoutesCallback& callback) override; |
| 37 void GetNetworkStatus(const GetNetworkStatusCallback& callback) override; | 37 void GetNetworkStatus(const GetNetworkStatusCallback& callback) override; |
| 38 void GetModemStatus(const GetModemStatusCallback& callback) override; | 38 void GetModemStatus(const GetModemStatusCallback& callback) override; |
| 39 void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) override; | 39 void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) override; |
| 40 void GetNetworkInterfaces( | 40 void GetNetworkInterfaces( |
| 41 const GetNetworkInterfacesCallback& callback) override; | 41 const GetNetworkInterfacesCallback& callback) override; |
| 42 void GetPerfData(uint32_t duration, | 42 void GetPerfData(uint32_t duration, |
| 43 const GetPerfDataCallback& callback) override; | 43 const GetPerfDataCallback& callback) override; |
| 44 void GetPerfOutput(uint32_t duration, |
| 45 const GetPerfOutputCallback& callback) override; |
| 44 void GetScrubbedLogs(const GetLogsCallback& callback) override; | 46 void GetScrubbedLogs(const GetLogsCallback& callback) override; |
| 45 void GetAllLogs(const GetLogsCallback& callback) override; | 47 void GetAllLogs(const GetLogsCallback& callback) override; |
| 46 void GetUserLogFiles(const GetLogsCallback& callback) override; | 48 void GetUserLogFiles(const GetLogsCallback& callback) override; |
| 47 void TestICMP(const std::string& ip_address, | 49 void TestICMP(const std::string& ip_address, |
| 48 const TestICMPCallback& callback) override; | 50 const TestICMPCallback& callback) override; |
| 49 void TestICMPWithOptions(const std::string& ip_address, | 51 void TestICMPWithOptions(const std::string& ip_address, |
| 50 const std::map<std::string, std::string>& options, | 52 const std::map<std::string, std::string>& options, |
| 51 const TestICMPCallback& callback) override; | 53 const TestICMPCallback& callback) override; |
| 52 void UploadCrashes() override; | 54 void UploadCrashes() override; |
| 53 void EnableDebuggingFeatures( | 55 void EnableDebuggingFeatures( |
| (...skipping 19 matching lines...) Expand all Loading... |
| 73 bool service_is_available_; | 75 bool service_is_available_; |
| 74 std::vector<WaitForServiceToBeAvailableCallback> | 76 std::vector<WaitForServiceToBeAvailableCallback> |
| 75 pending_wait_for_service_to_be_available_callbacks_; | 77 pending_wait_for_service_to_be_available_callbacks_; |
| 76 | 78 |
| 77 DISALLOW_COPY_AND_ASSIGN(FakeDebugDaemonClient); | 79 DISALLOW_COPY_AND_ASSIGN(FakeDebugDaemonClient); |
| 78 }; | 80 }; |
| 79 | 81 |
| 80 } // namespace chromeos | 82 } // namespace chromeos |
| 81 | 83 |
| 82 #endif // CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ | 84 #endif // CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ |
| OLD | NEW |