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

Unified Diff: chrome/browser/chromeos/extensions/extension_system_event_observer.h

Issue 26692002: chromeos: More power-related cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/extensions/extension_system_event_observer.h
diff --git a/chrome/browser/chromeos/extensions/extension_system_event_observer.h b/chrome/browser/chromeos/extensions/extension_system_event_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..f9ada8abcc528a682cb2cf156979be62f6f835cc
--- /dev/null
+++ b/chrome/browser/chromeos/extensions/extension_system_event_observer.h
@@ -0,0 +1,36 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_EXTENSION_SYSTEM_EVENT_OBSERVER_H_
+#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_EXTENSION_SYSTEM_EVENT_OBSERVER_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "chromeos/dbus/power_manager_client.h"
+#include "chromeos/dbus/session_manager_client.h"
+
+namespace chromeos {
+
+// Dispatches extension events in response to system events.
+class ExtensionSystemEventObserver : public PowerManagerClient::Observer,
+ public SessionManagerClient::Observer {
+ public:
+ // This class registers/unregisters itself as an observer in ctor/dtor.
+ ExtensionSystemEventObserver();
+ virtual ~ExtensionSystemEventObserver();
+
+ // PowerManagerClient::Observer overrides:
+ virtual void BrightnessChanged(int level, bool user_initiated) OVERRIDE;
+ virtual void SystemResumed(const base::TimeDelta& sleep_duration) OVERRIDE;
+
+ // SessionManagerClient::Observer override.
+ virtual void ScreenIsUnlocked() OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ExtensionSystemEventObserver);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_EXTENSION_SYSTEM_EVENT_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698