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

Side by Side Diff: chrome/browser/extensions/activity_log/api_name_constants.h

Issue 15817008: Move systemInfo.cpu API out out experimental namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Constants used in api_actions.cc. 5 // Constants used in api_actions.cc.
6 6
7 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ 7 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ 8 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_
9 9
10 namespace activity_log_api_name_constants { 10 namespace activity_log_api_name_constants {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "experimental.processes.getProcessInfo", 74 "experimental.processes.getProcessInfo",
75 "experimental.processes.onCreated", "experimental.processes.onExited", 75 "experimental.processes.onCreated", "experimental.processes.onExited",
76 "experimental.processes.onUnresponsive", 76 "experimental.processes.onUnresponsive",
77 "experimental.processes.onUpdated", 77 "experimental.processes.onUpdated",
78 "experimental.processes.onUpdatedWithMemory", 78 "experimental.processes.onUpdatedWithMemory",
79 "experimental.processes.terminate", 79 "experimental.processes.terminate",
80 "experimental.record.captureURLs", "experimental.record.replayURLs", 80 "experimental.record.captureURLs", "experimental.record.replayURLs",
81 "experimental.speechInput.isRecording", "experimental.speechInput.onError", 81 "experimental.speechInput.isRecording", "experimental.speechInput.onError",
82 "experimental.speechInput.onResult", "experimental.speechInput.onSoundEnd", 82 "experimental.speechInput.onResult", "experimental.speechInput.onSoundEnd",
83 "experimental.speechInput.onSoundStart", "experimental.speechInput.start", 83 "experimental.speechInput.onSoundStart", "experimental.speechInput.start",
84 "experimental.speechInput.stop", "experimental.systemInfo.cpu.get" , 84 "experimental.speechInput.stop", "systemInfo.cpu.get",
85 "experimental.systemInfo.cpu.onUpdated", 85 "systemInfo.cpu.onUpdated",
asargent_no_longer_on_chrome 2013/05/30 19:14:00 Please see comments at the top of this enum.
Tim Song 2013/05/31 01:08:35 I think just renaming existing functions should be
asargent_no_longer_on_chrome 2013/05/31 18:31:32 We should create new entries, not rename the old o
Tim Song 2013/05/31 19:29:03 Done.
86 "experimental.systemInfo.display.get", 86 "experimental.systemInfo.display.get",
87 "experimental.systemInfo.memory.get", "experimental.systemInfo.storage.get", 87 "experimental.systemInfo.memory.get", "experimental.systemInfo.storage.get",
88 "experimental.systemInfo.storage.onAttached", 88 "experimental.systemInfo.storage.onAttached",
89 "experimental.systemInfo.storage.onAvailableCapacityChanged", 89 "experimental.systemInfo.storage.onAvailableCapacityChanged",
90 "experimental.systemInfo.storage.onDetached", 90 "experimental.systemInfo.storage.onDetached",
91 "extension.getBackgroundPage", "extension.getURL", "extension.getViews", 91 "extension.getBackgroundPage", "extension.getURL", "extension.getViews",
92 "extension.isAllowedFileSchemeAccess", 92 "extension.isAllowedFileSchemeAccess",
93 "extension.isAllowedIncognitoAccess", "extension.setUpdateUrlData", 93 "extension.isAllowedIncognitoAccess", "extension.setUpdateUrlData",
94 "fileBrowserHandler.onExecute", "fileBrowserHandler.selectFile", 94 "fileBrowserHandler.onExecute", "fileBrowserHandler.selectFile",
95 "fileSystem.chooseEntry", "fileSystem.getDisplayPath", 95 "fileSystem.chooseEntry", "fileSystem.getDisplayPath",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "webstore.install", "windows.create", "windows.get", "windows.getAll", 189 "webstore.install", "windows.create", "windows.get", "windows.getAll",
190 "windows.getCurrent", "windows.getLastFocused", "windows.onCreated", 190 "windows.getCurrent", "windows.getLastFocused", "windows.onCreated",
191 "windows.onFocusChanged", "windows.onRemoved", "windows.remove", 191 "windows.onFocusChanged", "windows.onRemoved", "windows.remove",
192 "windows.update", 192 "windows.update",
193 "tabs.getSelected", "tabs.sendRequest" 193 "tabs.getSelected", "tabs.sendRequest"
194 }; 194 };
195 195
196 } // namespace activity_log_api_name_constants 196 } // namespace activity_log_api_name_constants
197 197
198 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ 198 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698