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

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

Issue 9274004: Take the Extension Storage API out of experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/extensions/settings/settings_api.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 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/extension_event_names.h" 5 #include "chrome/browser/extensions/extension_event_names.h"
6 6
7 namespace extension_event_names { 7 namespace extension_event_names {
8 8
9 const char kOnTabActiveChanged[] = "tabs.onActiveChanged"; 9 const char kOnTabActiveChanged[] = "tabs.onActiveChanged";
10 const char kOnTabAttached[] = "tabs.onAttached"; 10 const char kOnTabAttached[] = "tabs.onAttached";
11 const char kOnTabCreated[] = "tabs.onCreated"; 11 const char kOnTabCreated[] = "tabs.onCreated";
(...skipping 17 matching lines...) Expand all
29 const char kOnFileChanged[] = "fileBrowserPrivate.onFileChanged"; 29 const char kOnFileChanged[] = "fileBrowserPrivate.onFileChanged";
30 const char kOnFileBrowserMountCompleted[] = 30 const char kOnFileBrowserMountCompleted[] =
31 "fileBrowserPrivate.onMountCompleted"; 31 "fileBrowserPrivate.onMountCompleted";
32 32
33 const char kOnInputMethodChanged[] = "inputMethodPrivate.onChanged"; 33 const char kOnInputMethodChanged[] = "inputMethodPrivate.onChanged";
34 34
35 const char kOnDownloadCreated[] = "experimental.downloads.onCreated"; 35 const char kOnDownloadCreated[] = "experimental.downloads.onCreated";
36 const char kOnDownloadChanged[] = "experimental.downloads.onChanged"; 36 const char kOnDownloadChanged[] = "experimental.downloads.onChanged";
37 const char kOnDownloadErased[] = "experimental.downloads.onErased"; 37 const char kOnDownloadErased[] = "experimental.downloads.onErased";
38 38
39 const char kOnSettingsChanged[] = "experimental.storage.onChanged"; 39 const char kOnSettingsChanged[] = "storage.onChanged";
40 } // namespace extension_event_names 40 } // namespace extension_event_names
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/settings/settings_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698