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

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: Codereview 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..cbb108df4685816973c0f16f5c560e73ebf92717 100644
--- a/chrome/browser/accessibility_events.cc
+++ b/chrome/browser/accessibility_events.cc
@@ -213,6 +213,13 @@ void AccessibilityVolumeInfo::SerializeToDict(DictionaryValue *dict) const {
dict->SetBoolean(keys::kIsVolumeMutedKey, is_muted_);
}
+AccessibilityEmptyEventInfo::AccessibilityEmptyEventInfo(Profile* profile)
+ : AccessibilityEventInfo(profile) {
+}
+
+void AccessibilityEmptyEventInfo::SerializeToDict(DictionaryValue *dict) const {
+}
+
AccessibilityMenuInfo::AccessibilityMenuInfo(Profile* profile,
const std::string& menu_name)
: AccessibilityControlInfo(profile, menu_name) {

Powered by Google App Engine
This is Rietveld 408576698