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

Unified Diff: content/public/browser/extension_system_notifications.cc

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.cc
diff --git a/content/public/browser/extension_system_notifications.cc b/content/public/browser/extension_system_notifications.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3743b1652bdbbaa4c3abc91edd5304aab9583635
--- /dev/null
+++ b/content/public/browser/extension_system_notifications.cc
@@ -0,0 +1,22 @@
+// Copyright (c) 2012 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.
+
+#include "content/public/browser/extension_system_notifications.h"
+
+namespace content {
+
+LaunchAppWithUrlDetails::LaunchAppWithUrlDetails(const std::string& app_id,
+ const std::string& handler_id,
+ const GURL& url,
+ const GURL& referrer_url)
+ : app_id(app_id),
+ handler_id(handler_id),
+ url(url),
+ referrer_url(referrer_url) {
+}
+
+LaunchAppWithUrlDetails::~LaunchAppWithUrlDetails() {
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698