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

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

Issue 337423002: Enable identity.email permission and chrome.identity.getProfileUserInfo API in stable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update permission string, getProfileUserInfo without email permission Created 6 years, 6 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 // This features file defines extension APIs implemented under src/chrome. 5 // This features file defines extension APIs implemented under src/chrome.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 }, 472 },
473 "identity": { 473 "identity": {
474 "dependencies": ["permission:identity"], 474 "dependencies": ["permission:identity"],
475 "contexts": ["blessed_extension"] 475 "contexts": ["blessed_extension"]
476 }, 476 },
477 "identity.getAccounts": { 477 "identity.getAccounts": {
478 "channel": "dev", 478 "channel": "dev",
479 "dependencies": ["permission:identity"], 479 "dependencies": ["permission:identity"],
480 "contexts": ["blessed_extension"] 480 "contexts": ["blessed_extension"]
481 }, 481 },
482 "identity.getProfileUserInfo": {
483 "channel": "dev",
484 "dependencies": ["permission:identity.email"],
485 "contexts": ["blessed_extension"]
486 },
487 "identityPrivate": { 482 "identityPrivate": {
488 "dependencies": ["permission:identityPrivate"], 483 "dependencies": ["permission:identityPrivate"],
489 "contexts": ["blessed_extension"] 484 "contexts": ["blessed_extension"]
490 }, 485 },
491 "idltest": { 486 "idltest": {
492 "dependencies": ["permission:idltest"], 487 "dependencies": ["permission:idltest"],
493 "contexts": ["blessed_extension"] 488 "contexts": ["blessed_extension"]
494 }, 489 },
495 "idle": { 490 "idle": {
496 "dependencies": ["permission:idle"], 491 "dependencies": ["permission:idle"],
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 "internal": true, 791 "internal": true,
797 "channel": "stable", 792 "channel": "stable",
798 "dependencies": ["permission:webview"], 793 "dependencies": ["permission:webview"],
799 "contexts": ["blessed_extension"] 794 "contexts": ["blessed_extension"]
800 }, 795 },
801 "windows": { 796 "windows": {
802 "dependencies": ["api:tabs"], 797 "dependencies": ["api:tabs"],
803 "contexts": ["blessed_extension"] 798 "contexts": ["blessed_extension"]
804 } 799 }
805 } 800 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/identity/identity_apitest.cc ('k') | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698