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

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

Issue 1329033002: Disable extension Panels on Dev and Canary, except for the whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove stray Created 5 years, 3 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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 "contexts": ["blessed_extension"] 475 "contexts": ["blessed_extension"]
476 }, 476 },
477 "gcm": { 477 "gcm": {
478 "dependencies": ["permission:gcm"], 478 "dependencies": ["permission:gcm"],
479 "contexts": ["blessed_extension"] 479 "contexts": ["blessed_extension"]
480 }, 480 },
481 "hangoutsPrivate": { 481 "hangoutsPrivate": {
482 "channel": "stable", 482 "channel": "stable",
483 "contexts": ["blessed_extension"], 483 "contexts": ["blessed_extension"],
484 "whitelist": [ 484 "whitelist": [
485 // http://crbug.com/309737 485 // http://crbug.com/309737.
486 "nckgahadagoaajjgafhacjanaoiihapd", 486 // Keep this list in sync with extensions_misc::kHangoutsExtensionIds.
487 "ljclpkphhpbpinifbeabbhlfddcpfdde", 487 "nckgahadagoaajjgafhacjanaoiihapd", // Hangouts Production.
488 "ppleadejekpmccmnpjdimmlfljlkdfej", 488 "ljclpkphhpbpinifbeabbhlfddcpfdde", // Hangouts Debug.
489 "eggnbpckecmjlblplehfpjjdhhidfdoj", 489 "ppleadejekpmccmnpjdimmlfljlkdfej", // Hangouts Alpha.
490 "jfjjdfefebklmdbmenmlehlopoocnoeh", 490 "eggnbpckecmjlblplehfpjjdhhidfdoj", // Hangouts Beta.
491 "knipolnnllmklapflnccelgolnpehhpl" 491 "jfjjdfefebklmdbmenmlehlopoocnoeh", // Hangouts Packaged App Debug.
492 "knipolnnllmklapflnccelgolnpehhpl" // Hangouts Packaged App Prod.
492 ] 493 ]
493 }, 494 },
494 "history": { 495 "history": {
495 "dependencies": ["permission:history"], 496 "dependencies": ["permission:history"],
496 "contexts": ["blessed_extension"] 497 "contexts": ["blessed_extension"]
497 }, 498 },
498 "hotwordPrivate": { 499 "hotwordPrivate": {
499 "dependencies": ["permission:hotwordPrivate"], 500 "dependencies": ["permission:hotwordPrivate"],
500 "contexts": ["blessed_extension"] 501 "contexts": ["blessed_extension"]
501 }, 502 },
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 "internal": true, 826 "internal": true,
826 "channel": "stable", 827 "channel": "stable",
827 "dependencies": ["permission:webview"], 828 "dependencies": ["permission:webview"],
828 "contexts": ["blessed_extension"] 829 "contexts": ["blessed_extension"]
829 }, 830 },
830 "windows": { 831 "windows": {
831 "dependencies": ["api:tabs"], 832 "dependencies": ["api:tabs"],
832 "contexts": ["blessed_extension"] 833 "contexts": ["blessed_extension"]
833 } 834 }
834 } 835 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698