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

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

Issue 683703002: Notify launcher page with onTransitionChanged event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@launcher_page_api_show_state_notify
Patch Set: nullptr like it's 1999 Created 6 years, 1 month 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
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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 "contexts": ["blessed_extension"] 456 "contexts": ["blessed_extension"]
457 }, 457 },
458 "input.ime": { 458 "input.ime": {
459 "dependencies": ["permission:input"], 459 "dependencies": ["permission:input"],
460 "contexts": ["blessed_extension"] 460 "contexts": ["blessed_extension"]
461 }, 461 },
462 "inputMethodPrivate": { 462 "inputMethodPrivate": {
463 "dependencies": ["permission:inputMethodPrivate"], 463 "dependencies": ["permission:inputMethodPrivate"],
464 "contexts": ["blessed_extension"] 464 "contexts": ["blessed_extension"]
465 }, 465 },
466 "launcherPagePrivate": {
Matt Giuca 2014/11/03 00:57:42 I thought we agreed to just call this launcherPage
calamity 2014/11/06 02:36:31 Done.
467 "dependencies": ["manifest:launcher_page"],
468 "contexts": ["blessed_extension"]
469 },
466 "location": { 470 "location": {
467 "dependencies": ["permission:location"], 471 "dependencies": ["permission:location"],
468 "contexts": ["blessed_extension"] 472 "contexts": ["blessed_extension"]
469 }, 473 },
470 "logPrivate": { 474 "logPrivate": {
471 "dependencies": ["permission:logPrivate"], 475 "dependencies": ["permission:logPrivate"],
472 "contexts": ["blessed_extension"] 476 "contexts": ["blessed_extension"]
473 }, 477 },
474 "webcamPrivate": { 478 "webcamPrivate": {
475 "dependencies": ["permission:webcamPrivate"], 479 "dependencies": ["permission:webcamPrivate"],
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 "internal": true, 717 "internal": true,
714 "channel": "stable", 718 "channel": "stable",
715 "dependencies": ["permission:webview"], 719 "dependencies": ["permission:webview"],
716 "contexts": ["blessed_extension"] 720 "contexts": ["blessed_extension"]
717 }, 721 },
718 "windows": { 722 "windows": {
719 "dependencies": ["api:tabs"], 723 "dependencies": ["api:tabs"],
720 "contexts": ["blessed_extension"] 724 "contexts": ["blessed_extension"]
721 } 725 }
722 } 726 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698