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

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

Issue 21022018: Sessions API - previously Session Restore API. Supports restoring currently open foreign windows an… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 7 years, 4 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 455 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
456 }, 456 },
457 "scriptBadge": { 457 "scriptBadge": {
458 "dependencies": ["manifest:script_badge"], 458 "dependencies": ["manifest:script_badge"],
459 "contexts": ["blessed_extension"] 459 "contexts": ["blessed_extension"]
460 }, 460 },
461 "serial": { 461 "serial": {
462 "dependencies": ["permission:serial"], 462 "dependencies": ["permission:serial"],
463 "contexts": ["blessed_extension"] 463 "contexts": ["blessed_extension"]
464 }, 464 },
465 "sessionRestore": { 465 "sessions": {
466 "dependencies": ["permission:sessionRestore"], 466 "dependencies": ["permission:sessions"],
467 "contexts": ["blessed_extension"] 467 "contexts": ["blessed_extension"]
468 }, 468 },
469 "socket": { 469 "socket": {
470 "dependencies": ["permission:socket"], 470 "dependencies": ["permission:socket"],
471 "contexts": ["blessed_extension"] 471 "contexts": ["blessed_extension"]
472 }, 472 },
473 "sockets.udp": { 473 "sockets.udp": {
474 "dependencies": ["permission:sockets.udp"], 474 "dependencies": ["permission:sockets.udp"],
475 "channel": "dev", 475 "channel": "dev",
476 "contexts": ["blessed_extension"] 476 "contexts": ["blessed_extension"]
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 }, 588 },
589 "webview": { 589 "webview": {
590 "dependencies": ["permission:webview"], 590 "dependencies": ["permission:webview"],
591 "contexts": ["blessed_extension"] 591 "contexts": ["blessed_extension"]
592 }, 592 },
593 "windows": { 593 "windows": {
594 "dependencies": ["api:tabs"], 594 "dependencies": ["api:tabs"],
595 "contexts": ["blessed_extension"] 595 "contexts": ["blessed_extension"]
596 } 596 }
597 } 597 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698