| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 "contexts": ["blessed_extension"] | 456 "contexts": ["blessed_extension"] |
| 457 }, | 457 }, |
| 458 "input.ime": { | 458 "input.ime": { |
| 459 "dependencies": ["permission:input"], | 459 "dependencies": ["permission:input"], |
| 460 "contexts": ["blessed_extension"] | 460 "contexts": ["blessed_extension"] |
| 461 }, | 461 }, |
| 462 "inputMethodPrivate": { | 462 "inputMethodPrivate": { |
| 463 "dependencies": ["permission:inputMethodPrivate"], | 463 "dependencies": ["permission:inputMethodPrivate"], |
| 464 "contexts": ["blessed_extension"] | 464 "contexts": ["blessed_extension"] |
| 465 }, | 465 }, |
| 466 "launcherPagePrivate": { |
| 467 "dependencies": ["permission:launcherPagePrivate"], |
| 468 "contexts": ["blessed_extension"] |
| 469 }, |
| 466 "location": { | 470 "location": { |
| 467 "dependencies": ["permission:location"], | 471 "dependencies": ["permission:location"], |
| 468 "contexts": ["blessed_extension"] | 472 "contexts": ["blessed_extension"] |
| 469 }, | 473 }, |
| 470 "logPrivate": { | 474 "logPrivate": { |
| 471 "dependencies": ["permission:logPrivate"], | 475 "dependencies": ["permission:logPrivate"], |
| 472 "contexts": ["blessed_extension"] | 476 "contexts": ["blessed_extension"] |
| 473 }, | 477 }, |
| 474 "webcamPrivate": { | 478 "webcamPrivate": { |
| 475 "dependencies": ["permission:webcamPrivate"], | 479 "dependencies": ["permission:webcamPrivate"], |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 "internal": true, | 717 "internal": true, |
| 714 "channel": "stable", | 718 "channel": "stable", |
| 715 "dependencies": ["permission:webview"], | 719 "dependencies": ["permission:webview"], |
| 716 "contexts": ["blessed_extension"] | 720 "contexts": ["blessed_extension"] |
| 717 }, | 721 }, |
| 718 "windows": { | 722 "windows": { |
| 719 "dependencies": ["api:tabs"], | 723 "dependencies": ["api:tabs"], |
| 720 "contexts": ["blessed_extension"] | 724 "contexts": ["blessed_extension"] |
| 721 } | 725 } |
| 722 } | 726 } |
| OLD | NEW |