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

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: Use GetProcAddress to get WlanGetNetworkBssList function to avoid XP issues. 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 }, 415 },
416 "mdns": { 416 "mdns": {
417 "dependencies": ["permission:mdns"], 417 "dependencies": ["permission:mdns"],
418 "contexts": ["blessed_extension"] 418 "contexts": ["blessed_extension"]
419 }, 419 },
420 "musicManagerPrivate": { 420 "musicManagerPrivate": {
421 "dependencies": ["permission:musicManagerPrivate"], 421 "dependencies": ["permission:musicManagerPrivate"],
422 "contexts": ["blessed_extension"] 422 "contexts": ["blessed_extension"]
423 }, 423 },
424 "networkingPrivate": { 424 "networkingPrivate": {
425 "platforms": ["chromeos"], 425 "platforms": ["chromeos", "windows"],
426 "dependencies": ["permission:networkingPrivate"], 426 "dependencies": ["permission:networkingPrivate"],
427 "contexts": ["blessed_extension"] 427 "contexts": ["blessed_extension"]
428 }, 428 },
429 "notifications": { 429 "notifications": {
430 "dependencies": ["permission:notifications"], 430 "dependencies": ["permission:notifications"],
431 "contexts": ["blessed_extension"] 431 "contexts": ["blessed_extension"]
432 }, 432 },
433 "omnibox": { 433 "omnibox": {
434 "dependencies": ["manifest:omnibox"], 434 "dependencies": ["manifest:omnibox"],
435 "contexts": ["blessed_extension"] 435 "contexts": ["blessed_extension"]
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 "internal": true, 711 "internal": true,
712 "channel": "stable", 712 "channel": "stable",
713 "dependencies": ["permission:webview"], 713 "dependencies": ["permission:webview"],
714 "contexts": ["blessed_extension"] 714 "contexts": ["blessed_extension"]
715 }, 715 },
716 "windows": { 716 "windows": {
717 "dependencies": ["api:tabs"], 717 "dependencies": ["api:tabs"],
718 "contexts": ["blessed_extension"] 718 "contexts": ["blessed_extension"]
719 } 719 }
720 } 720 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698