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

Unified Diff: chrome/browser/extensions/event_names.cc

Issue 11361189: Initial skeleton for System Indicator API (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add menu handling stubs, address formatting issues Created 8 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/extensions/event_names.cc
diff --git a/chrome/browser/extensions/event_names.cc b/chrome/browser/extensions/event_names.cc
index 93aa3ea1b85486f62bb7b47bf59b494f95be084c..773250aaf5b8c7a8491b123578813ce9988cdde3 100644
--- a/chrome/browser/extensions/event_names.cc
+++ b/chrome/browser/extensions/event_names.cc
@@ -72,10 +72,15 @@ const char kOnPushMessage[] = "pushMessaging.onMessage";
const char kOnCpuUpdated[] = "experimental.systemInfo.cpu.onUpdated";
const char kOnStorageAvailableCapacityChanged[] =
- "experimental.systemInfo.storage.onAvailableCapacityChanged";
+ "experimental.systemInfo.storage.onAvailableCapacityChanged";
const char kOnStorageAdded[] = "experimental.systemInfo.storage.onAdded";
const char kOnStorageRemoved[] = "experimental.systemInfo.storage.onRemoved";
+const char kOnSystemIndicatorClicked[] =
+ "experimental.systemIndicator.onClicked";
+const char kOnSystemIndicatorMenuClicked[] =
+ "experimental.systemIndicator.onMenuClicked";
+
} // namespace event_names
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698