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

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

Issue 2475343002: Add UpstartClient (Closed)
Patch Set: Created UpstartClient and moved StartService there Created 4 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright (c) 2016 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_UPSTART_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_UPSTART_CLIENT_H_
7
8 #include "base/macros.h"
9
10 #include "chromeos/dbus/upstart_client.h"
11
12 namespace chromeos {
13
14 class CHROMEOS_EXPORT FakeUpstartClient : public UpstartClient {
15 public:
16 FakeUpstartClient();
17 ~FakeUpstartClient() override;
18
19 // DBusClient overrides.
20 void Init(dbus::Bus* bus) override;
hashimoto 2016/11/08 20:23:58 nit: Add a blank line.
Roman Sorokin (ftl) 2016/11/09 14:03:30 Done.
21 // UpstartClient overrides.
22 void StartAuthPolicyService() override;
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(FakeUpstartClient);
26 };
27
28 } // namespace chromeos
29
30 #endif // CHROMEOS_DBUS_FAKE_UPSTART_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698