1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_
#define CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chromeos/dbus/debug_daemon_client.h"
namespace chromeos {
// The DebugDaemonClient implementation used on Linux desktop,
// which does nothing.
class CHROMEOS_EXPORT FakeDebugDaemonClient : public DebugDaemonClient {
public:
FakeDebugDaemonClient();
virtual ~FakeDebugDaemonClient();
virtual void Init(dbus::Bus* bus) override;
virtual void DumpDebugLogs(bool is_compressed,
base::File file,
scoped_refptr<base::TaskRunner> task_runner,
const GetDebugLogsCallback& callback) override;
virtual void SetDebugMode(const std::string& subsystem,
const SetDebugModeCallback& callback) override;
virtual void StartSystemTracing() override;
virtual bool RequestStopSystemTracing(
scoped_refptr<base::TaskRunner> task_runner,
const StopSystemTracingCallback& callback) override;
virtual void GetRoutes(bool numeric,
bool ipv6,
const GetRoutesCallback& callback) override;
virtual void GetNetworkStatus(const GetNetworkStatusCallback& callback)
override;
virtual void GetModemStatus(const GetModemStatusCallback& callback) override;
virtual void GetWiMaxStatus(const GetWiMaxStatusCallback& callback) override;
virtual void GetNetworkInterfaces(
const GetNetworkInterfacesCallback& callback) override;
virtual void GetPerfData(uint32_t duration,
const GetPerfDataCallback& callback) override;
virtual void GetScrubbedLogs(const GetLogsCallback& callback) override;
virtual void GetAllLogs(const GetLogsCallback& callback) override;
virtual void GetUserLogFiles(const GetLogsCallback& callback) override;
virtual void TestICMP(const std::string& ip_address,
const TestICMPCallback& callback) override;
virtual void TestICMPWithOptions(
const std::string& ip_address,
const std::map<std::string, std::string>& options,
const TestICMPCallback& callback) override;
virtual void UploadCrashes() override;
virtual void EnableDebuggingFeatures(
const std::string& password,
const EnableDebuggingCallback& callback) override;
virtual void QueryDebuggingFeatures(
const QueryDevFeaturesCallback& callback) override;
virtual void RemoveRootfsVerification(
const EnableDebuggingCallback& callback) override;
// Sets debugging features mask for testing.
virtual void SetDebuggingFeaturesStatus(int featues_mask);
private:
int featues_mask_;
DISALLOW_COPY_AND_ASSIGN(FakeDebugDaemonClient);
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_FAKE_DEBUG_DAEMON_CLIENT_H_
|