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

Side by Side Diff: chrome/browser/extensions/event_names.cc

Issue 12313115: Take notification API out of experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflict. Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/event_names.h" 5 #include "chrome/browser/extensions/event_names.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace event_names { 9 namespace event_names {
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 const char kOnSystemIndicatorClicked[] = "systemIndicator.onClicked"; 82 const char kOnSystemIndicatorClicked[] = "systemIndicator.onClicked";
83 83
84 const char kOnServiceStatusChanged[] = "syncFileSystem.onServiceStatusChanged"; 84 const char kOnServiceStatusChanged[] = "syncFileSystem.onServiceStatusChanged";
85 const char kOnFileStatusChanged[] = "syncFileSystem.onFileStatusChanged"; 85 const char kOnFileStatusChanged[] = "syncFileSystem.onFileStatusChanged";
86 86
87 const char kOnAttachEventName[] = "mediaGalleriesPrivate.onDeviceAttached"; 87 const char kOnAttachEventName[] = "mediaGalleriesPrivate.onDeviceAttached";
88 const char kOnDetachEventName[] = "mediaGalleriesPrivate.onDeviceDetached"; 88 const char kOnDetachEventName[] = "mediaGalleriesPrivate.onDeviceDetached";
89 const char kOnGalleryChangedEventName[] = 89 const char kOnGalleryChangedEventName[] =
90 "mediaGalleriesPrivate.onGalleryChanged"; 90 "mediaGalleriesPrivate.onGalleryChanged";
91 91
92 const char kOnNotificationDisplayed[] = "experimental.notification.onDisplayed"; 92 const char kOnNotificationDisplayed[] = "notifications.onDisplayed";
93 const char kOnNotificationError[] = "experimental.notification.onError"; 93 const char kOnNotificationError[] = "notifications.onError";
94 const char kOnNotificationClosed[] = "experimental.notification.onClosed"; 94 const char kOnNotificationClosed[] = "notifications.onClosed";
95 const char kOnNotificationClicked[] = "experimental.notification.onClicked"; 95 const char kOnNotificationClicked[] = "notifications.onClicked";
96 const char kOnNotificationButtonClicked[] = 96 const char kOnNotificationButtonClicked[] = "notifications.onButtonClicked";
97 "experimental.notification.onButtonClicked";
98 97
99 const char kOnNetworksChanged[] = "networkingPrivate.onNetworksChanged"; 98 const char kOnNetworksChanged[] = "networkingPrivate.onNetworksChanged";
100 const char kOnNetworkListChanged[] = "networkingPrivate.onNetworkListChanged"; 99 const char kOnNetworkListChanged[] = "networkingPrivate.onNetworkListChanged";
101 100
102 } // namespace event_names 101 } // namespace event_names
103 102
104 } // namespace extensions 103 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698