Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // This features file defines extension APIs implemented under src/extensions. | 5 // This features file defines extension APIs implemented under src/extensions. |
| 6 // See extensions/common/features/* to understand this file, in particular | 6 // See extensions/common/features/* to understand this file, in particular |
| 7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 8 // | 8 // |
| 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 "dependencies": ["permission:app.window.shape"], | 70 "dependencies": ["permission:app.window.shape"], |
| 71 "contexts": ["blessed_extension"] | 71 "contexts": ["blessed_extension"] |
| 72 }, | 72 }, |
| 73 // The API for the *embedder* of appview. Appview has both an embedder and | 73 // The API for the *embedder* of appview. Appview has both an embedder and |
| 74 // guest API, which are different. | 74 // guest API, which are different. |
| 75 "appViewEmbedderInternal": { | 75 "appViewEmbedderInternal": { |
| 76 "internal": true, | 76 "internal": true, |
| 77 "contexts": ["blessed_extension"], | 77 "contexts": ["blessed_extension"], |
| 78 "dependencies": ["permission:appview"] | 78 "dependencies": ["permission:appview"] |
| 79 }, | 79 }, |
| 80 // Note that exposing this doesn't necessarily expose AppView, | |
| 81 // appViewEmbedderInternal is required for that. | |
|
not at google - send to devlin
2014/12/01 23:28:34
Reference the bug as to why you need it.
lazyboy
2014/12/01 23:57:55
Done.
| |
| 80 "appViewGuestInternal": { | 82 "appViewGuestInternal": { |
| 81 "internal": true, | 83 "internal": true, |
| 82 "channel": "dev", | 84 "channel": "stable", |
| 83 "contexts": ["blessed_extension"] | 85 "contexts": ["blessed_extension"] |
| 84 }, | 86 }, |
| 85 "bluetooth": { | 87 "bluetooth": { |
| 86 "dependencies": ["manifest:bluetooth"], | 88 "dependencies": ["manifest:bluetooth"], |
| 87 "contexts": ["blessed_extension"] | 89 "contexts": ["blessed_extension"] |
| 88 }, | 90 }, |
| 89 "bluetoothLowEnergy": { | 91 "bluetoothLowEnergy": { |
| 90 "dependencies": ["manifest:bluetooth"], | 92 "dependencies": ["manifest:bluetooth"], |
| 91 "contexts": ["blessed_extension"] | 93 "contexts": ["blessed_extension"] |
| 92 }, | 94 }, |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 350 }], | 352 }], |
| 351 "webViewRequest": [{ | 353 "webViewRequest": [{ |
| 352 "dependencies": ["permission:webview"], | 354 "dependencies": ["permission:webview"], |
| 353 "contexts": ["blessed_extension"] | 355 "contexts": ["blessed_extension"] |
| 354 }, { | 356 }, { |
| 355 "channel": "stable", | 357 "channel": "stable", |
| 356 "contexts": ["webui"], | 358 "contexts": ["webui"], |
| 357 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] | 359 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] |
| 358 }] | 360 }] |
| 359 } | 361 } |
| OLD | NEW |