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

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

Issue 18578008: [SystemInfo API] Move Storage API out of experimental namespace and rename to the "system" namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix PermissionTest unittest. 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
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 const char kBluetoothOnConnection[] = "bluetooth.onConnection"; 66 const char kBluetoothOnConnection[] = "bluetooth.onConnection";
67 const char kBluetoothOnDeviceDiscovered[] = "bluetooth.onDeviceDiscovered"; 67 const char kBluetoothOnDeviceDiscovered[] = "bluetooth.onDeviceDiscovered";
68 const char kBluetoothOnDeviceSearchFinished[] = 68 const char kBluetoothOnDeviceSearchFinished[] =
69 "bluetooth.onDeviceSearchFinished"; 69 "bluetooth.onDeviceSearchFinished";
70 const char kBluetoothOnDeviceSearchResult[] = "bluetooth.onDeviceSearchResult"; 70 const char kBluetoothOnDeviceSearchResult[] = "bluetooth.onDeviceSearchResult";
71 71
72 const char kOnPushMessage[] = "pushMessaging.onMessage"; 72 const char kOnPushMessage[] = "pushMessaging.onMessage";
73 73
74 const char kOnDisplayChanged[] = "system.display.onDisplayChanged"; 74 const char kOnDisplayChanged[] = "system.display.onDisplayChanged";
75 const char kOnStorageAvailableCapacityChanged[] = 75 const char kOnStorageAvailableCapacityChanged[] =
76 "experimental.systemInfo.storage.onAvailableCapacityChanged"; 76 "system.storage.onAvailableCapacityChanged";
77 const char kOnStorageAttached[] = "experimental.systemInfo.storage.onAttached"; 77 const char kOnStorageAttached[] = "system.storage.onAttached";
78 const char kOnStorageDetached[] = "experimental.systemInfo.storage.onDetached"; 78 const char kOnStorageDetached[] = "system.storage.onDetached";
79 79
80 const char kOnSystemIndicatorClicked[] = "systemIndicator.onClicked"; 80 const char kOnSystemIndicatorClicked[] = "systemIndicator.onClicked";
81 81
82 const char kOnServiceStatusChanged[] = "syncFileSystem.onServiceStatusChanged"; 82 const char kOnServiceStatusChanged[] = "syncFileSystem.onServiceStatusChanged";
83 const char kOnFileStatusChanged[] = "syncFileSystem.onFileStatusChanged"; 83 const char kOnFileStatusChanged[] = "syncFileSystem.onFileStatusChanged";
84 84
85 const char kOnAttachEventName[] = "mediaGalleriesPrivate.onDeviceAttached"; 85 const char kOnAttachEventName[] = "mediaGalleriesPrivate.onDeviceAttached";
86 const char kOnDetachEventName[] = "mediaGalleriesPrivate.onDeviceDetached"; 86 const char kOnDetachEventName[] = "mediaGalleriesPrivate.onDeviceDetached";
87 const char kOnGalleryChangedEventName[] = 87 const char kOnGalleryChangedEventName[] =
88 "mediaGalleriesPrivate.onGalleryChanged"; 88 "mediaGalleriesPrivate.onGalleryChanged";
(...skipping 13 matching lines...) Expand all
102 const char kOnRestarted[] = "app.runtime.onRestarted"; 102 const char kOnRestarted[] = "app.runtime.onRestarted";
103 103
104 const char kOnFeedbackRequested[] = "feedbackPrivate.onFeedbackRequested"; 104 const char kOnFeedbackRequested[] = "feedbackPrivate.onFeedbackRequested";
105 105
106 const char kDeveloperPrivateOnItemStateChanged[] = 106 const char kDeveloperPrivateOnItemStateChanged[] =
107 "developerPrivate.onItemStateChanged"; 107 "developerPrivate.onItemStateChanged";
108 108
109 } // namespace event_names 109 } // namespace event_names
110 110
111 } // namespace extensions 111 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698