Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: chromeos/dbus/fake_debug_daemon_client.h

Issue 1218583002: metrics: Add dbus interface for GetRandomPerfOutput (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check has_ms_after_login() instead of ms_after_login() value Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromeos/dbus/debug_daemon_client.cc ('k') | chromeos/dbus/fake_debug_daemon_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chromeos/dbus/debug_daemon_client.cc ('k') | chromeos/dbus/fake_debug_daemon_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698