OLD | NEW |
---|---|
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
70 "experimental.identity.launchWebAuthFlow", "infobars.show", | 70 "experimental.identity.launchWebAuthFlow", "infobars.show", |
71 "experimental.mediaGalleries.assembleMediaFile", | 71 "experimental.mediaGalleries.assembleMediaFile", |
72 "experimental.mediaGalleries.extractEmbeddedThumbnails", | 72 "experimental.mediaGalleries.extractEmbeddedThumbnails", |
73 "experimental.processes.getProcessIdForTab", | 73 "experimental.processes.getProcessIdForTab", |
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", | |
felt
2013/08/02 13:52:26
As the comment at the top of this file says, "Do n
pals
2013/08/05 05:35:55
Done.
| |
81 "experimental.speechInput.isRecording", "experimental.speechInput.onError", | 80 "experimental.speechInput.isRecording", "experimental.speechInput.onError", |
82 "experimental.speechInput.onResult", "experimental.speechInput.onSoundEnd", | 81 "experimental.speechInput.onResult", "experimental.speechInput.onSoundEnd", |
83 "experimental.speechInput.onSoundStart", "experimental.speechInput.start", | 82 "experimental.speechInput.onSoundStart", "experimental.speechInput.start", |
84 "experimental.speechInput.stop", "experimental.systemInfo.cpu.get" , | 83 "experimental.speechInput.stop", "experimental.systemInfo.cpu.get" , |
85 "experimental.systemInfo.cpu.onUpdated", | 84 "experimental.systemInfo.cpu.onUpdated", |
86 "experimental.systemInfo.display.get", | 85 "experimental.systemInfo.display.get", |
87 "experimental.systemInfo.memory.get", "experimental.systemInfo.storage.get", | 86 "experimental.systemInfo.memory.get", "experimental.systemInfo.storage.get", |
88 "experimental.systemInfo.storage.onAttached", | 87 "experimental.systemInfo.storage.onAttached", |
89 "experimental.systemInfo.storage.onAvailableCapacityChanged", | 88 "experimental.systemInfo.storage.onAvailableCapacityChanged", |
90 "experimental.systemInfo.storage.onDetached", | 89 "experimental.systemInfo.storage.onDetached", |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
205 "system.storage.addAvailableCapacityWatch", | 204 "system.storage.addAvailableCapacityWatch", |
206 "system.storage.removeAvailableCapacityWatch", | 205 "system.storage.removeAvailableCapacityWatch", |
207 "system.storage.getAllAvailableCapacityWatches", | 206 "system.storage.getAllAvailableCapacityWatches", |
208 "system.storage.removeAllAvailableCapacityWatches", | 207 "system.storage.removeAllAvailableCapacityWatches", |
209 "system.storage.onAvailableCapacityChanged" | 208 "system.storage.onAvailableCapacityChanged" |
210 }; | 209 }; |
211 | 210 |
212 } // namespace activity_log_api_name_constants | 211 } // namespace activity_log_api_name_constants |
213 | 212 |
214 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ | 213 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ |
OLD | NEW |