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

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

Issue 22295002: Base infrastructure for Networking Private API on Windows and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address some codereview comments. Created 7 years, 2 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 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 }, 379 },
380 "mdns": { 380 "mdns": {
381 "dependencies": ["permission:mdns"], 381 "dependencies": ["permission:mdns"],
382 "contexts": ["blessed_extension"] 382 "contexts": ["blessed_extension"]
383 }, 383 },
384 "musicManagerPrivate": { 384 "musicManagerPrivate": {
385 "dependencies": ["permission:musicManagerPrivate"], 385 "dependencies": ["permission:musicManagerPrivate"],
386 "contexts": ["blessed_extension"] 386 "contexts": ["blessed_extension"]
387 }, 387 },
388 "networkingPrivate": { 388 "networkingPrivate": {
389 "platform": "chromeos",
390 "dependencies": ["permission:networkingPrivate"], 389 "dependencies": ["permission:networkingPrivate"],
391 "contexts": ["blessed_extension"] 390 "contexts": ["blessed_extension"]
392 }, 391 },
393 "notifications": { 392 "notifications": {
394 "dependencies": ["permission:notifications"], 393 "dependencies": ["permission:notifications"],
395 "contexts": ["blessed_extension"] 394 "contexts": ["blessed_extension"]
396 }, 395 },
397 "omnibox": { 396 "omnibox": {
398 "dependencies": ["manifest:omnibox"], 397 "dependencies": ["manifest:omnibox"],
399 "contexts": ["blessed_extension"] 398 "contexts": ["blessed_extension"]
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 "internal": true, 666 "internal": true,
668 "channel": "stable", 667 "channel": "stable",
669 "dependencies": ["permission:webview"], 668 "dependencies": ["permission:webview"],
670 "contexts": ["blessed_extension"] 669 "contexts": ["blessed_extension"]
671 }, 670 },
672 "windows": { 671 "windows": {
673 "dependencies": ["api:tabs"], 672 "dependencies": ["api:tabs"],
674 "contexts": ["blessed_extension"] 673 "contexts": ["blessed_extension"]
675 } 674 }
676 } 675 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698