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

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

Issue 27722003: Windows-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Specify wlanapi.lib in chrome.gyp instead of #pragma comment. 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 }, 384 },
385 "mdns": { 385 "mdns": {
386 "dependencies": ["permission:mdns"], 386 "dependencies": ["permission:mdns"],
387 "contexts": ["blessed_extension"] 387 "contexts": ["blessed_extension"]
388 }, 388 },
389 "musicManagerPrivate": { 389 "musicManagerPrivate": {
390 "dependencies": ["permission:musicManagerPrivate"], 390 "dependencies": ["permission:musicManagerPrivate"],
391 "contexts": ["blessed_extension"] 391 "contexts": ["blessed_extension"]
392 }, 392 },
393 "networkingPrivate": { 393 "networkingPrivate": {
394 "platforms": ["chromeos"], 394 "platforms": ["chromeos", "windows"],
Jói 2013/10/19 21:14:45 Just checking that this is intentional as part of
mef 2013/10/21 15:37:16 Yes, per discussion with tbarzic@ it will help ext
395 "dependencies": ["permission:networkingPrivate"], 395 "dependencies": ["permission:networkingPrivate"],
396 "contexts": ["blessed_extension"] 396 "contexts": ["blessed_extension"]
397 }, 397 },
398 "notifications": { 398 "notifications": {
399 "dependencies": ["permission:notifications"], 399 "dependencies": ["permission:notifications"],
400 "contexts": ["blessed_extension"] 400 "contexts": ["blessed_extension"]
401 }, 401 },
402 "omnibox": { 402 "omnibox": {
403 "dependencies": ["manifest:omnibox"], 403 "dependencies": ["manifest:omnibox"],
404 "contexts": ["blessed_extension"] 404 "contexts": ["blessed_extension"]
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 "internal": true, 672 "internal": true,
673 "channel": "stable", 673 "channel": "stable",
674 "dependencies": ["permission:webview"], 674 "dependencies": ["permission:webview"],
675 "contexts": ["blessed_extension"] 675 "contexts": ["blessed_extension"]
676 }, 676 },
677 "windows": { 677 "windows": {
678 "dependencies": ["api:tabs"], 678 "dependencies": ["api:tabs"],
679 "contexts": ["blessed_extension"] 679 "contexts": ["blessed_extension"]
680 } 680 }
681 } 681 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698