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

Unified Diff: content/public/browser/notification_types.h

Issue 22944002: Implementation of the "Redirect URLs to Packaged Apps" feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 1) Fixed broken redirection for in-page WebKit-initiated navigations. All redirections work now. 2)… Created 7 years, 4 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: content/public/browser/notification_types.h
diff --git a/content/public/browser/notification_types.h b/content/public/browser/notification_types.h
index 0125ff9e97a27ff25d0cc9d042c1e11cb1b322ab..090a784600d5fbd9706f5fb574d4af2e5cd524e9 100644
--- a/content/public/browser/notification_types.h
+++ b/content/public/browser/notification_types.h
@@ -234,6 +234,12 @@ enum NotificationType {
// the RenderViewHost, and the details is a DomOperationNotificationDetails.
NOTIFICATION_DOM_OPERATION_RESPONSE,
+ // Instruction from RendererProcessHost (via ChromeContentRendererClient) to
+ // the ExtensionService to launch an app with a given URL. This is used,
+ // for example, to redirect to the app WebKit-initiated navigations to URLs
+ // that the app has claimed it can handle.
+ NOTIFICATION_LAUNCH_APP_WITH_URL,
Charlie Reis 2013/08/26 22:17:52 We can't add this to content/.
sergeygs 2013/08/29 08:24:42 Changed the naming to reflect the general nature o
+
// Custom notifications used by the embedder should start from here.
NOTIFICATION_CONTENT_END,
};

Powered by Google App Engine
This is Rietveld 408576698