1 // Copyright 2014 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.
5 #ifndef CHROME_BROWSER_CHROMEOS_DBUS_SCREEN_LOCK_SERVICE_PROVIDER_H_
6 #define CHROME_BROWSER_CHROMEOS_DBUS_SCREEN_LOCK_SERVICE_PROVIDER_H_
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/weak_ptr.h"
14 #include "chromeos/dbus/services/cros_dbus_service.h"
15 #include "dbus/exported_object.h"
23 // This class exports a "LockScreen" D-Bus methods that the session manager
24 // calls to instruct Chrome to lock the screen.
25 class ScreenLockServiceProvider
26 : public CrosDBusService::ServiceProviderInterface
{
28 ScreenLockServiceProvider();
29 ~ScreenLockServiceProvider() override
;
31 // CrosDBusService::ServiceProviderInterface overrides:
32 void Start(scoped_refptr
<dbus::ExportedObject
> exported_object
) override
;
35 // Called from ExportedObject when a handler is exported as a D-Bus
36 // method or failed to be exported.
37 void OnExported(const std::string
& interface_name
,
38 const std::string
& method_name
,
41 // Called on UI thread in response to D-Bus requests.
42 void LockScreen(dbus::MethodCall
* method_call
,
43 dbus::ExportedObject::ResponseSender response_sender
);
45 // Keep this last so that all weak pointers will be invalidated at the
46 // beginning of destruction.
47 base::WeakPtrFactory
<ScreenLockServiceProvider
> weak_ptr_factory_
;
49 DISALLOW_COPY_AND_ASSIGN(ScreenLockServiceProvider
);
52 } // namespace chromeos
54 #endif // CHROME_BROWSER_CHROMEOS_DBUS_SCREEN_LOCK_SERVICE_PROVIDER_H_