Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: chrome/common/extensions/api/_api_features.json

Issue 231843005: Extensions: Fix a bad dependency in _api_features.json. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 // 7 //
8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
10 10
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 "fileSystem": { 369 "fileSystem": {
370 "dependencies": ["permission:fileSystem"], 370 "dependencies": ["permission:fileSystem"],
371 "contexts": ["blessed_extension"] 371 "contexts": ["blessed_extension"]
372 }, 372 },
373 "fileSystemProvider": { 373 "fileSystemProvider": {
374 "dependencies": ["permission:fileSystemProvider"], 374 "dependencies": ["permission:fileSystemProvider"],
375 "contexts": ["blessed_extension"] 375 "contexts": ["blessed_extension"]
376 }, 376 },
377 "fileSystemProviderInternal": { 377 "fileSystemProviderInternal": {
378 "internal": true, 378 "internal": true,
379 "dependencies": ["fileSystemProvider"], 379 "dependencies": ["permission:fileSystemProvider"],
380 "contexts": ["blessed_extension"] 380 "contexts": ["blessed_extension"]
381 }, 381 },
382 "firstRunPrivate": { 382 "firstRunPrivate": {
383 "platforms": ["chromeos"], 383 "platforms": ["chromeos"],
384 "dependencies": ["permission:firstRunPrivate"], 384 "dependencies": ["permission:firstRunPrivate"],
385 "contexts": ["blessed_extension"] 385 "contexts": ["blessed_extension"]
386 }, 386 },
387 "fontSettings": { 387 "fontSettings": {
388 "dependencies": ["permission:fontSettings"], 388 "dependencies": ["permission:fontSettings"],
389 "contexts": ["blessed_extension"] 389 "contexts": ["blessed_extension"]
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 "internal": true, 806 "internal": true,
807 "channel": "stable", 807 "channel": "stable",
808 "dependencies": ["permission:webview"], 808 "dependencies": ["permission:webview"],
809 "contexts": ["blessed_extension"] 809 "contexts": ["blessed_extension"]
810 }, 810 },
811 "windows": { 811 "windows": {
812 "dependencies": ["api:tabs"], 812 "dependencies": ["api:tabs"],
813 "contexts": ["blessed_extension"] 813 "contexts": ["blessed_extension"]
814 } 814 }
815 } 815 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698