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

Unified Diff: content/public/browser/extension_system_notifications.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/extension_system_notifications.h
diff --git a/content/public/browser/extension_system_notifications.h b/content/public/browser/extension_system_notifications.h
new file mode 100644
index 0000000000000000000000000000000000000000..5aad427abf93abc16d1d02ced14cd696b905eef3
--- /dev/null
+++ b/content/public/browser/extension_system_notifications.h
@@ -0,0 +1,29 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_EXTENSION_SYSTEM_NOTIFICATIONS_H_
+#define CONTENT_PUBLIC_BROWSER_EXTENSION_SYSTEM_NOTIFICATIONS_H_
+
+#include <string>
+
+#include "content/common/content_export.h"
+#include "googleurl/src/gurl.h"
+
+namespace content {
+
+struct CONTENT_EXPORT LaunchAppWithUrlDetails {
Charlie Reis 2013/08/26 22:17:52 Like the extension stuff, we can't add this in con
sergeygs 2013/08/29 08:24:42 Changed the naming to reflect the general nature o
+ LaunchAppWithUrlDetails(const std::string& app_id,
+ const std::string& handler_id,
+ const GURL& url,
+ const GURL& referrer_url);
+ ~LaunchAppWithUrlDetails();
+ std::string app_id;
+ std::string handler_id;
+ GURL url;
+ GURL referrer_url;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_EXTENSION_SYSTEM_NOTIFICATIONS_H_

Powered by Google App Engine
This is Rietveld 408576698