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

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

Issue 327403003: Identity API: add chrome.identity.getProfileUserInfo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add identity.email permission to stubs_app 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 },
482 "identityPrivate": { 487 "identityPrivate": {
483 "dependencies": ["permission:identityPrivate"], 488 "dependencies": ["permission:identityPrivate"],
484 "contexts": ["blessed_extension"] 489 "contexts": ["blessed_extension"]
485 }, 490 },
486 "idltest": { 491 "idltest": {
487 "dependencies": ["permission:idltest"], 492 "dependencies": ["permission:idltest"],
488 "contexts": ["blessed_extension"] 493 "contexts": ["blessed_extension"]
489 }, 494 },
490 "idle": { 495 "idle": {
491 "dependencies": ["permission:idle"], 496 "dependencies": ["permission:idle"],
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 "internal": true, 811 "internal": true,
807 "channel": "stable", 812 "channel": "stable",
808 "dependencies": ["permission:webview"], 813 "dependencies": ["permission:webview"],
809 "contexts": ["blessed_extension"] 814 "contexts": ["blessed_extension"]
810 }, 815 },
811 "windows": { 816 "windows": {
812 "dependencies": ["api:tabs"], 817 "dependencies": ["api:tabs"],
813 "contexts": ["blessed_extension"] 818 "contexts": ["blessed_extension"]
814 } 819 }
815 } 820 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/identity/identity_apitest.cc ('k') | chrome/common/extensions/api/identity.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698