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

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

Issue 2840103002: Add new API function: feedbackPrivate.readLogSource (Closed)
Patch Set: Add proper ifdefs for non-CrOS platforms Created 3 years, 6 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and feature_provider.h. 7 // well as feature.h, simple_feature.h, and 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 // See http://crbug.com/275944 for background. 445 // See http://crbug.com/275944 for background.
446 "extensionsManifestTypes": { 446 "extensionsManifestTypes": {
447 "internal": true, 447 "internal": true,
448 "channel": "stable", 448 "channel": "stable",
449 "contexts": ["blessed_extension"] 449 "contexts": ["blessed_extension"]
450 }, 450 },
451 "feedbackPrivate": { 451 "feedbackPrivate": {
452 "dependencies": ["permission:feedbackPrivate"], 452 "dependencies": ["permission:feedbackPrivate"],
453 "contexts": ["blessed_extension"] 453 "contexts": ["blessed_extension"]
454 }, 454 },
455 "feedbackPrivate.readLogSource": {
456 "platforms": ["chromeos"],
457 "session_types": ["kiosk"]
458 },
455 "fileBrowserHandler": { 459 "fileBrowserHandler": {
456 "dependencies": ["permission:fileBrowserHandler"], 460 "dependencies": ["permission:fileBrowserHandler"],
457 "contexts": ["blessed_extension"] 461 "contexts": ["blessed_extension"]
458 }, 462 },
459 "fileBrowserHandlerInternal": { 463 "fileBrowserHandlerInternal": {
460 "internal": true, 464 "internal": true,
461 "dependencies": ["permission:fileBrowserHandler"], 465 "dependencies": ["permission:fileBrowserHandler"],
462 "contexts": ["blessed_extension"] 466 "contexts": ["blessed_extension"]
463 }, 467 },
464 "screenlockPrivate": { 468 "screenlockPrivate": {
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 "dependencies": ["api:tabs"], 849 "dependencies": ["api:tabs"],
846 "contexts": ["blessed_extension"] 850 "contexts": ["blessed_extension"]
847 }, { 851 }, {
848 "channel": "stable", 852 "channel": "stable",
849 "contexts": ["webui"], 853 "contexts": ["webui"],
850 "matches": [ 854 "matches": [
851 "chrome://bookmarks/*" 855 "chrome://bookmarks/*"
852 ] 856 ]
853 }] 857 }]
854 } 858 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698