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

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

Issue 8177022: Add onChanged events to the extension settings API, both from sync and between (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 9 years, 2 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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";
(...skipping 17 matching lines...) Expand all
28 const char kOnFileBrowserDiskChanged[] = "fileBrowserPrivate.onDiskChanged"; 28 const char kOnFileBrowserDiskChanged[] = "fileBrowserPrivate.onDiskChanged";
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
39 const char kOnSettingsChanged[] = "experimental.settings.onChanged";
38 } // namespace extension_event_names 40 } // namespace extension_event_names
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_event_names.h ('k') | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698