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

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

Issue 2475343002: Add UpstartClient (Closed)
Patch Set: Wait for D-BUS response 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.
hashimoto 2016/11/14 22:09:41 nit: No (c) after Copyright. (see https://chromium
Roman Sorokin (ftl) 2016/11/15 10:04:10 Done.
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_UPSTART_CLIENT_H_
6 #define CHROMEOS_DBUS_UPSTART_CLIENT_H_
7
8 #include "chromeos/chromeos_export.h"
9 #include "chromeos/dbus/dbus_client.h"
10
11 namespace chromeos {
12
13 // UpstartClient is used to communicate with the com.ubuntu.Upstart
14 // sevice. All methods should be called from the origin thread (UI thread) which
15 // initializes the DBusThreadManager instance.
16 class CHROMEOS_EXPORT UpstartClient : public DBusClient {
17 public:
18 ~UpstartClient() override;
19
20 // Factory function, creates a new instance and returns ownership.
21 // For normal usage, access the singleton via DBusThreadManager::Get().
22 static UpstartClient* Create();
23
24 // Non-blocking signal to Upstart to start authpolicyd.
hashimoto 2016/11/14 22:09:41 Using the term "signal" here is confusing as it's
Roman Sorokin (ftl) 2016/11/15 10:04:10 Done.
25 virtual void StartAuthPolicyService() = 0;
26
27 protected:
28 // Create() should be used instead.
29 UpstartClient();
30
31 private:
32 DISALLOW_COPY_AND_ASSIGN(UpstartClient);
33 };
34
35 } // namespace chromeos
36
37 #endif // CHROMEOS_DBUS_UPSTART_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698