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

Unified Diff: chrome/browser/accessibility_events.cc

Issue 8558014: Add experimental extension APIs to notify about wakeup and screen unlock (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to ToT Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/accessibility_events.cc
diff --git a/chrome/browser/accessibility_events.cc b/chrome/browser/accessibility_events.cc
index a86f35425e9e9caba52ee3b98464b1b609761822..7eaee7e33b1063ef5d1104d1c45e592c98d78e99 100644
--- a/chrome/browser/accessibility_events.cc
+++ b/chrome/browser/accessibility_events.cc
@@ -213,6 +213,20 @@ void AccessibilityVolumeInfo::SerializeToDict(DictionaryValue *dict) const {
dict->SetBoolean(keys::kIsVolumeMutedKey, is_muted_);
}
+ScreenUnlockedEventInfo::ScreenUnlockedEventInfo(Profile* profile)
+ : AccessibilityEventInfo(profile) {
+}
+
+void ScreenUnlockedEventInfo::SerializeToDict(DictionaryValue *dict) const {
+}
+
+WokeUpEventInfo::WokeUpEventInfo(Profile* profile)
+ : AccessibilityEventInfo(profile) {
+}
+
+void WokeUpEventInfo::SerializeToDict(DictionaryValue *dict) const {
+}
+
AccessibilityMenuInfo::AccessibilityMenuInfo(Profile* profile,
const std::string& menu_name)
: AccessibilityControlInfo(profile, menu_name) {
« no previous file with comments | « chrome/browser/accessibility_events.h ('k') | chrome/browser/chromeos/accessibility/system_event_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698