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

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

Issue 2298603002: chromeos: Remove Introspectable D-Bus client library (Closed)
Patch Set: readme Created 4 years, 3 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/dbus_thread_manager.cc ('k') | chromeos/dbus/fake_introspectable_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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROMEOS_DBUS_FAKE_INTROSPECTABLE_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_INTROSPECTABLE_CLIENT_H_
7
8 #include "base/compiler_specific.h"
9 #include "chromeos/dbus/introspectable_client.h"
10
11 namespace chromeos {
12
13 // The IntrospectableClient implementation used on Linux desktop, which does
14 // nothing.
15 class FakeIntrospectableClient: public IntrospectableClient {
16 public:
17 FakeIntrospectableClient();
18 ~FakeIntrospectableClient() override;
19
20 void Init(dbus::Bus* bus) override;
21 void Introspect(const std::string& service_name,
22 const dbus::ObjectPath& object_path,
23 const IntrospectCallback& callback) override;
24 };
25
26 } // namespace chromeos
27
28 #endif // CHROMEOS_DBUS_INTROSPECTABLE_CLIENT_H_
OLDNEW
« no previous file with comments | « chromeos/dbus/dbus_thread_manager.cc ('k') | chromeos/dbus/fake_introspectable_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698