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

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: Added assert true to test 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 423 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
424 }, 424 },
425 "scriptBadge": { 425 "scriptBadge": {
426 "dependencies": ["manifest:script_badge"], 426 "dependencies": ["manifest:script_badge"],
427 "contexts": ["blessed_extension"] 427 "contexts": ["blessed_extension"]
428 }, 428 },
429 "serial": { 429 "serial": {
430 "dependencies": ["permission:serial"], 430 "dependencies": ["permission:serial"],
431 "contexts": ["blessed_extension"] 431 "contexts": ["blessed_extension"]
432 }, 432 },
433 "sessionRestore": { 433 "sessions": {
434 "dependencies": ["permission:sessionRestore"], 434 "dependencies": ["permission:sessions"],
435 "contexts": ["blessed_extension"] 435 "contexts": ["blessed_extension"]
436 }, 436 },
437 "socket": { 437 "socket": {
438 "dependencies": ["permission:socket"], 438 "dependencies": ["permission:socket"],
439 "contexts": ["blessed_extension"] 439 "contexts": ["blessed_extension"]
440 }, 440 },
441 "storage": { 441 "storage": {
442 "dependencies": ["permission:storage"], 442 "dependencies": ["permission:storage"],
443 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 443 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
444 }, 444 },
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 }, 570 },
571 "webview": { 571 "webview": {
572 "dependencies": ["permission:webview"], 572 "dependencies": ["permission:webview"],
573 "contexts": ["blessed_extension"] 573 "contexts": ["blessed_extension"]
574 }, 574 },
575 "windows": { 575 "windows": {
576 "dependencies": ["permission:tabs"], 576 "dependencies": ["permission:tabs"],
577 "contexts": ["blessed_extension"] 577 "contexts": ["blessed_extension"]
578 } 578 }
579 } 579 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698