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

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

Issue 27283002: Identity API: Add chrome.identity.onSignInChanged routing and IDL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unintended IdentityAPI changes Created 7 years, 2 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 }, 266 },
267 "i18n": { 267 "i18n": {
268 "channel": "stable", 268 "channel": "stable",
269 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 269 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
270 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 270 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
271 }, 271 },
272 "identity": { 272 "identity": {
273 "dependencies": ["permission:identity"], 273 "dependencies": ["permission:identity"],
274 "contexts": ["blessed_extension"] 274 "contexts": ["blessed_extension"]
275 }, 275 },
276 "identity.onSignInChanged": {
277 "channel": "dev",
278 "dependencies": ["permission:identity"],
279 "contexts": ["blessed_extension"]
280 },
276 "identityPrivate": { 281 "identityPrivate": {
277 "dependencies": ["permission:identityPrivate"], 282 "dependencies": ["permission:identityPrivate"],
278 "contexts": ["blessed_extension"] 283 "contexts": ["blessed_extension"]
279 }, 284 },
280 "idltest": { 285 "idltest": {
281 "dependencies": ["permission:idltest"], 286 "dependencies": ["permission:idltest"],
282 "contexts": ["blessed_extension"] 287 "contexts": ["blessed_extension"]
283 }, 288 },
284 "idle": { 289 "idle": {
285 "dependencies": ["permission:idle"], 290 "dependencies": ["permission:idle"],
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 "webview": { 622 "webview": {
618 "internal": true, 623 "internal": true,
619 "dependencies": ["permission:webview"], 624 "dependencies": ["permission:webview"],
620 "contexts": ["blessed_extension", "unblessed_extension"] 625 "contexts": ["blessed_extension", "unblessed_extension"]
621 }, 626 },
622 "windows": { 627 "windows": {
623 "dependencies": ["api:tabs"], 628 "dependencies": ["api:tabs"],
624 "contexts": ["blessed_extension"] 629 "contexts": ["blessed_extension"]
625 } 630 }
626 } 631 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698