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

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

Issue 16439016: extfs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 const char kOnNotificationButtonClicked[] = "notifications.onButtonClicked"; 94 const char kOnNotificationButtonClicked[] = "notifications.onButtonClicked";
95 95
96 const char kOnNetworksChanged[] = "networkingPrivate.onNetworksChanged"; 96 const char kOnNetworksChanged[] = "networkingPrivate.onNetworksChanged";
97 const char kOnNetworkListChanged[] = "networkingPrivate.onNetworkListChanged"; 97 const char kOnNetworkListChanged[] = "networkingPrivate.onNetworkListChanged";
98 98
99 const char kOnAudioDeviceChanged[] = "audio.onDeviceChanged"; 99 const char kOnAudioDeviceChanged[] = "audio.onDeviceChanged";
100 100
101 const char kOnLaunched[] = "app.runtime.onLaunched"; 101 const char kOnLaunched[] = "app.runtime.onLaunched";
102 const char kOnRestarted[] = "app.runtime.onRestarted"; 102 const char kOnRestarted[] = "app.runtime.onRestarted";
103 103
104
104 const char kOnFeedbackRequested[] = "feedbackPrivate.onFeedbackRequested"; 105 const char kOnFeedbackRequested[] = "feedbackPrivate.onFeedbackRequested";
105 106
106 const char kDeveloperPrivateOnItemStateChanged[] = 107 const char kDeveloperPrivateOnItemStateChanged[] =
107 "developerPrivate.onItemStateChanged"; 108 "developerPrivate.onItemStateChanged";
108 109
110 const char kOnEntryRequested[] = "extfs.onEntryRequested";
111 const char kOnDirectoryEntriesRequested[] =
112 "extfs.onDirectoryEntriesRequested";
113 const char kOnSnapshotRequested[] = "extfs.onSnapshotRequested";
114
109 } // namespace event_names 115 } // namespace event_names
110 116
111 } // namespace extensions 117 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/event_names.h ('k') | chrome/browser/extensions/extension_function_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698