| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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 #include "chrome/browser/chromeos/power/screen_lock_observer.h" | |
| 6 | |
| 7 #include "chrome/browser/extensions/api/system_private/system_private_api.h" | |
| 8 #include "chromeos/dbus/dbus_thread_manager.h" | |
| 9 | |
| 10 namespace chromeos { | |
| 11 | |
| 12 ScreenLockObserver::ScreenLockObserver() { | |
| 13 DBusThreadManager::Get()->GetSessionManagerClient()->AddObserver(this); | |
| 14 } | |
| 15 | |
| 16 ScreenLockObserver::~ScreenLockObserver() { | |
| 17 DBusThreadManager::Get()->GetSessionManagerClient()->RemoveObserver(this); | |
| 18 } | |
| 19 | |
| 20 void ScreenLockObserver::ScreenIsUnlocked() { | |
| 21 extensions::DispatchScreenUnlockedEvent(); | |
| 22 } | |
| 23 | |
| 24 } // namespace chromeos | |
| OLD | NEW |