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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 "webRequest.onBeforeRedirect", "webRequest.onBeforeRequest", | 185 "webRequest.onBeforeRedirect", "webRequest.onBeforeRequest", |
186 "webRequest.onBeforeSendHeaders", "webRequest.onCompleted", | 186 "webRequest.onBeforeSendHeaders", "webRequest.onCompleted", |
187 "webRequest.onErrorOccurred", "webRequest.onHeadersReceived", | 187 "webRequest.onErrorOccurred", "webRequest.onHeadersReceived", |
188 "webRequest.onResponseStarted", "webRequest.onSendHeaders", | 188 "webRequest.onResponseStarted", "webRequest.onSendHeaders", |
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 "systemInfo.cpu.get", "systemInfo.memory.get", | 194 "systemInfo.cpu.get", "systemInfo.memory.get", |
195 "runtime.onRestartRequired" | 195 "runtime.onRestartRequired", |
| 196 "system.storage.get", |
| 197 "system.storage.onAttached", |
| 198 "system.storage.onDetached", |
| 199 "system.storage.ejectDevice", |
| 200 "system.storage.addAvailableCapacityWatch", |
| 201 "system.storage.removeAvailableCapacityWatch", |
| 202 "system.storage.getAllAvailableCapacityWatches", |
| 203 "system.storage.removeAllAvailableCapacityWatches", |
| 204 "system.storage.onAvailableCapacityChanged" |
196 }; | 205 }; |
197 | 206 |
198 } // namespace activity_log_api_name_constants | 207 } // namespace activity_log_api_name_constants |
199 | 208 |
200 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ | 209 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_API_NAME_CONSTANTS_H_ |
OLD | NEW |