| OLD | NEW |
| 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 // This features file defines extension APIs implemented under src/chrome. | 5 // This features file defines extension APIs implemented under src/chrome. |
| 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 "contexts": ["blessed_extension"] | 461 "contexts": ["blessed_extension"] |
| 462 }, | 462 }, |
| 463 "input.ime": { | 463 "input.ime": { |
| 464 "dependencies": ["permission:input"], | 464 "dependencies": ["permission:input"], |
| 465 "contexts": ["blessed_extension"] | 465 "contexts": ["blessed_extension"] |
| 466 }, | 466 }, |
| 467 "inputMethodPrivate": { | 467 "inputMethodPrivate": { |
| 468 "dependencies": ["permission:inputMethodPrivate"], | 468 "dependencies": ["permission:inputMethodPrivate"], |
| 469 "contexts": ["blessed_extension"] | 469 "contexts": ["blessed_extension"] |
| 470 }, | 470 }, |
| 471 "launcherPage": { |
| 472 "dependencies": ["manifest:launcher_page"], |
| 473 "contexts": ["blessed_extension"] |
| 474 }, |
| 471 "location": { | 475 "location": { |
| 472 "dependencies": ["permission:location"], | 476 "dependencies": ["permission:location"], |
| 473 "contexts": ["blessed_extension"] | 477 "contexts": ["blessed_extension"] |
| 474 }, | 478 }, |
| 475 "logPrivate": { | 479 "logPrivate": { |
| 476 "dependencies": ["permission:logPrivate"], | 480 "dependencies": ["permission:logPrivate"], |
| 477 "contexts": ["blessed_extension"] | 481 "contexts": ["blessed_extension"] |
| 478 }, | 482 }, |
| 479 "webcamPrivate": { | 483 "webcamPrivate": { |
| 480 "dependencies": ["permission:webcamPrivate"], | 484 "dependencies": ["permission:webcamPrivate"], |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 "internal": true, | 703 "internal": true, |
| 700 "channel": "stable", | 704 "channel": "stable", |
| 701 "dependencies": ["permission:webview"], | 705 "dependencies": ["permission:webview"], |
| 702 "contexts": ["blessed_extension"] | 706 "contexts": ["blessed_extension"] |
| 703 }, | 707 }, |
| 704 "windows": { | 708 "windows": { |
| 705 "dependencies": ["api:tabs"], | 709 "dependencies": ["api:tabs"], |
| 706 "contexts": ["blessed_extension"] | 710 "contexts": ["blessed_extension"] |
| 707 } | 711 } |
| 708 } | 712 } |
| OLD | NEW |