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

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: Reset DHCP after WiFi Connect to speed up the connection after factory reset. Created 7 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 | 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 }, 349 },
350 "metricsPrivate": { 350 "metricsPrivate": {
351 "dependencies": ["permission:metricsPrivate"], 351 "dependencies": ["permission:metricsPrivate"],
352 "contexts": ["blessed_extension"] 352 "contexts": ["blessed_extension"]
353 }, 353 },
354 "musicManagerPrivate": { 354 "musicManagerPrivate": {
355 "dependencies": ["permission:musicManagerPrivate"], 355 "dependencies": ["permission:musicManagerPrivate"],
356 "contexts": ["blessed_extension"] 356 "contexts": ["blessed_extension"]
357 }, 357 },
358 "networkingPrivate": { 358 "networkingPrivate": {
359 "platform": "chromeos",
360 "dependencies": ["permission:networkingPrivate"], 359 "dependencies": ["permission:networkingPrivate"],
361 "contexts": ["blessed_extension"] 360 "contexts": ["blessed_extension"]
362 }, 361 },
363 "notifications": { 362 "notifications": {
364 "dependencies": ["permission:notifications"], 363 "dependencies": ["permission:notifications"],
365 "contexts": ["blessed_extension"] 364 "contexts": ["blessed_extension"]
366 }, 365 },
367 "omnibox": { 366 "omnibox": {
368 "dependencies": ["manifest:omnibox"], 367 "dependencies": ["manifest:omnibox"],
369 "contexts": ["blessed_extension"] 368 "contexts": ["blessed_extension"]
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 "webview": { 600 "webview": {
602 "internal": true, 601 "internal": true,
603 "dependencies": ["permission:webview"], 602 "dependencies": ["permission:webview"],
604 "contexts": ["blessed_extension"] 603 "contexts": ["blessed_extension"]
605 }, 604 },
606 "windows": { 605 "windows": {
607 "dependencies": ["api:tabs"], 606 "dependencies": ["api:tabs"],
608 "contexts": ["blessed_extension"] 607 "contexts": ["blessed_extension"]
609 } 608 }
610 } 609 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698