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

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: 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 451 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
452 }, 452 },
453 "scriptBadge": { 453 "scriptBadge": {
454 "dependencies": ["manifest:script_badge"], 454 "dependencies": ["manifest:script_badge"],
455 "contexts": ["blessed_extension"] 455 "contexts": ["blessed_extension"]
456 }, 456 },
457 "serial": { 457 "serial": {
458 "dependencies": ["permission:serial"], 458 "dependencies": ["permission:serial"],
459 "contexts": ["blessed_extension"] 459 "contexts": ["blessed_extension"]
460 }, 460 },
461 "sessionRestore": { 461 "sessions": {
462 "dependencies": ["permission:sessionRestore"], 462 "dependencies": ["permission:sessions"],
463 "contexts": ["blessed_extension"] 463 "contexts": ["blessed_extension"]
464 }, 464 },
465 "socket": { 465 "socket": {
466 "dependencies": ["permission:socket"], 466 "dependencies": ["permission:socket"],
467 "contexts": ["blessed_extension"] 467 "contexts": ["blessed_extension"]
468 }, 468 },
469 "storage": { 469 "storage": {
470 "dependencies": ["permission:storage"], 470 "dependencies": ["permission:storage"],
471 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 471 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
472 }, 472 },
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 }, 579 },
580 "webview": { 580 "webview": {
581 "dependencies": ["permission:webview"], 581 "dependencies": ["permission:webview"],
582 "contexts": ["blessed_extension"] 582 "contexts": ["blessed_extension"]
583 }, 583 },
584 "windows": { 584 "windows": {
585 "dependencies": ["api:tabs"], 585 "dependencies": ["api:tabs"],
586 "contexts": ["blessed_extension"] 586 "contexts": ["blessed_extension"]
587 } 587 }
588 } 588 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698