| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 #include <sys/types.h> | 9 #include <sys/types.h> |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) override; | 47 void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) override; |
| 48 void GetNetworkInterfaces( | 48 void GetNetworkInterfaces( |
| 49 const GetNetworkInterfacesCallback& callback) override; | 49 const GetNetworkInterfacesCallback& callback) override; |
| 50 void GetPerfOutput(base::TimeDelta duration, | 50 void GetPerfOutput(base::TimeDelta duration, |
| 51 const std::vector<std::string>& perf_args, | 51 const std::vector<std::string>& perf_args, |
| 52 int file_descriptor, | 52 int file_descriptor, |
| 53 const DBusMethodErrorCallback& error_callback) override; | 53 const DBusMethodErrorCallback& error_callback) override; |
| 54 void GetScrubbedLogs(const GetLogsCallback& callback) override; | 54 void GetScrubbedLogs(const GetLogsCallback& callback) override; |
| 55 void GetScrubbedBigLogs(const GetLogsCallback& callback) override; | 55 void GetScrubbedBigLogs(const GetLogsCallback& callback) override; |
| 56 void GetAllLogs(const GetLogsCallback& callback) override; | 56 void GetAllLogs(const GetLogsCallback& callback) override; |
| 57 void GetLog(const std::string& log_name, |
| 58 const GetLogsCallback& callback) override; |
| 57 void GetUserLogFiles(const GetLogsCallback& callback) override; | 59 void GetUserLogFiles(const GetLogsCallback& callback) override; |
| 58 void TestICMP(const std::string& ip_address, | 60 void TestICMP(const std::string& ip_address, |
| 59 const TestICMPCallback& callback) override; | 61 const TestICMPCallback& callback) override; |
| 60 void TestICMPWithOptions(const std::string& ip_address, | 62 void TestICMPWithOptions(const std::string& ip_address, |
| 61 const std::map<std::string, std::string>& options, | 63 const std::map<std::string, std::string>& options, |
| 62 const TestICMPCallback& callback) override; | 64 const TestICMPCallback& callback) override; |
| 63 void UploadCrashes() override; | 65 void UploadCrashes() override; |
| 64 void EnableDebuggingFeatures( | 66 void EnableDebuggingFeatures( |
| 65 const std::string& password, | 67 const std::string& password, |
| 66 const EnableDebuggingCallback& callback) override; | 68 const EnableDebuggingCallback& callback) override; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 std::vector<WaitForServiceToBeAvailableCallback> | 103 std::vector<WaitForServiceToBeAvailableCallback> |
| 102 pending_wait_for_service_to_be_available_callbacks_; | 104 pending_wait_for_service_to_be_available_callbacks_; |
| 103 std::set<std::string> printers_; | 105 std::set<std::string> printers_; |
| 104 | 106 |
| 105 DISALLOW_COPY_AND_ASSIGN(FakeDebugDaemonClient); | 107 DISALLOW_COPY_AND_ASSIGN(FakeDebugDaemonClient); |
| 106 }; | 108 }; |
| 107 | 109 |
| 108 } // namespace chromeos | 110 } // namespace chromeos |
| 109 | 111 |
| 110 #endif // CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ | 112 #endif // CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_ |
| OLD | NEW |