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

Unified Diff: chrome/common/extensions/api/app_runtime.idl

Issue 12225076: Delete most web intents code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/app_runtime.idl
diff --git a/chrome/common/extensions/api/app_runtime.idl b/chrome/common/extensions/api/app_runtime.idl
index e63dc5b471b367726ce0b03b23f5c8841cfdf899..fc602db2e1114529324050d44825c366a8ba42ac 100644
--- a/chrome/common/extensions/api/app_runtime.idl
+++ b/chrome/common/extensions/api/app_runtime.idl
@@ -44,15 +44,16 @@ namespace app.runtime {
interface Events {
// Fired when an app is launched from the launcher or in response to a web
- // intent.
- static void onLaunched(optional LaunchData launchData);
+ // intent. Deprecated.
+ [nodoc] static void onLaunched(optional LaunchData launchData);
// Fired at Chrome startup to apps that were running when Chrome last shut
// down.
static void onRestarted();
};
- dictionary IntentResponse {
+ // Deprecated.
+ [nodoc] dictionary IntentResponse {
// Identifies the intent.
long intentId;
@@ -66,7 +67,7 @@ namespace app.runtime {
interface Functions {
// postIntentResponse is an internal method to responds to an intent
// previously sent to a packaged app. This is identified by intentId, and
- // should only be invoked at most once per intentId.
+ // should only be invoked at most once per intentId. Deprecated.
[nodoc] static void postIntentResponse(IntentResponse intentResponse);
};
};

Powered by Google App Engine
This is Rietveld 408576698