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

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

Issue 329853010: Additional methods for chrome.logPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 (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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 "ledger": { 486 "ledger": {
487 "dependencies": ["permission:ledger"], 487 "dependencies": ["permission:ledger"],
488 "contexts": ["blessed_extension"] 488 "contexts": ["blessed_extension"]
489 }, 489 },
490 "location": { 490 "location": {
491 "dependencies": ["permission:location"], 491 "dependencies": ["permission:location"],
492 "contexts": ["blessed_extension"] 492 "contexts": ["blessed_extension"]
493 }, 493 },
494 "logPrivate": { 494 "logPrivate": {
495 "dependencies": ["permission:logPrivate"], 495 "dependencies": ["permission:logPrivate"],
496 "extension_types": ["extension", "legacy_packaged_app"],
497 "contexts": ["blessed_extension"] 496 "contexts": ["blessed_extension"]
498 }, 497 },
499 "webcamPrivate": { 498 "webcamPrivate": {
500 "dependencies": ["permission:webcamPrivate"], 499 "dependencies": ["permission:webcamPrivate"],
501 "contexts": ["blessed_extension"] 500 "contexts": ["blessed_extension"]
502 }, 501 },
503 "management": { 502 "management": {
504 "dependencies": ["permission:management"], 503 "dependencies": ["permission:management"],
505 "contexts": ["blessed_extension"] 504 "contexts": ["blessed_extension"]
506 }, 505 },
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 "internal": true, 766 "internal": true,
768 "channel": "stable", 767 "channel": "stable",
769 "dependencies": ["permission:webview"], 768 "dependencies": ["permission:webview"],
770 "contexts": ["blessed_extension"] 769 "contexts": ["blessed_extension"]
771 }, 770 },
772 "windows": { 771 "windows": {
773 "dependencies": ["api:tabs"], 772 "dependencies": ["api:tabs"],
774 "contexts": ["blessed_extension"] 773 "contexts": ["blessed_extension"]
775 } 774 }
776 } 775 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698