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

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

Issue 194693002: [fsp] Add requestUnmount() method together with the request manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 9 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
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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 "contexts": ["blessed_extension"] 347 "contexts": ["blessed_extension"]
348 }, 348 },
349 "fileSystem": { 349 "fileSystem": {
350 "dependencies": ["permission:fileSystem"], 350 "dependencies": ["permission:fileSystem"],
351 "contexts": ["blessed_extension"] 351 "contexts": ["blessed_extension"]
352 }, 352 },
353 "fileSystemProvider": { 353 "fileSystemProvider": {
354 "dependencies": ["permission:fileSystemProvider"], 354 "dependencies": ["permission:fileSystemProvider"],
355 "contexts": ["blessed_extension"] 355 "contexts": ["blessed_extension"]
356 }, 356 },
357 "fileSystemProviderInternal": {
358 "internal": true,
359 "dependencies": ["fileSystemProvider"],
360 "contexts": ["blessed_extension", "unblessed_extension"]
361 },
357 "firstRunPrivate": { 362 "firstRunPrivate": {
358 "platforms": ["chromeos"], 363 "platforms": ["chromeos"],
359 "dependencies": ["permission:firstRunPrivate"], 364 "dependencies": ["permission:firstRunPrivate"],
360 "contexts": ["blessed_extension"] 365 "contexts": ["blessed_extension"]
361 }, 366 },
362 "fontSettings": { 367 "fontSettings": {
363 "dependencies": ["permission:fontSettings"], 368 "dependencies": ["permission:fontSettings"],
364 "contexts": ["blessed_extension"] 369 "contexts": ["blessed_extension"]
365 }, 370 },
366 "gcm": { 371 "gcm": {
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 "internal": true, 786 "internal": true,
782 "channel": "stable", 787 "channel": "stable",
783 "dependencies": ["permission:webview"], 788 "dependencies": ["permission:webview"],
784 "contexts": ["blessed_extension"] 789 "contexts": ["blessed_extension"]
785 }, 790 },
786 "windows": { 791 "windows": {
787 "dependencies": ["api:tabs"], 792 "dependencies": ["api:tabs"],
788 "contexts": ["blessed_extension"] 793 "contexts": ["blessed_extension"]
789 } 794 }
790 } 795 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698