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

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

Issue 870163002: Move networking_private to src/extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move api_features and permissions Created 5 years, 11 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 "mimeHandlerViewGuestInternal": { 522 "mimeHandlerViewGuestInternal": {
523 "internal": true, 523 "internal": true,
524 "contexts": "all", 524 "contexts": "all",
525 "channel": "dev", 525 "channel": "dev",
526 "matches": ["<all_urls>"] 526 "matches": ["<all_urls>"]
527 }, 527 },
528 "musicManagerPrivate": { 528 "musicManagerPrivate": {
529 "dependencies": ["permission:musicManagerPrivate"], 529 "dependencies": ["permission:musicManagerPrivate"],
530 "contexts": ["blessed_extension"] 530 "contexts": ["blessed_extension"]
531 }, 531 },
532 "networkingPrivate": {
533 "dependencies": ["permission:networkingPrivate"],
534 "contexts": ["blessed_extension"]
535 },
536 "notificationProvider": { 532 "notificationProvider": {
537 "dependencies": ["permission:notificationProvider"], 533 "dependencies": ["permission:notificationProvider"],
538 "contexts": ["blessed_extension"] 534 "contexts": ["blessed_extension"]
539 }, 535 },
540 "notifications": { 536 "notifications": {
541 "dependencies": ["permission:notifications"], 537 "dependencies": ["permission:notifications"],
542 "contexts": ["blessed_extension"] 538 "contexts": ["blessed_extension"]
543 }, 539 },
544 "omnibox": { 540 "omnibox": {
545 "dependencies": ["manifest:omnibox"], 541 "dependencies": ["manifest:omnibox"],
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 "internal": true, 692 "internal": true,
697 "channel": "stable", 693 "channel": "stable",
698 "dependencies": ["permission:webview"], 694 "dependencies": ["permission:webview"],
699 "contexts": ["blessed_extension"] 695 "contexts": ["blessed_extension"]
700 }, 696 },
701 "windows": { 697 "windows": {
702 "dependencies": ["api:tabs"], 698 "dependencies": ["api:tabs"],
703 "contexts": ["blessed_extension"] 699 "contexts": ["blessed_extension"]
704 } 700 }
705 } 701 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698