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

Unified Diff: content/public/browser/url_handling_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: Code review comments + lint errors 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/url_handling_notifications.cc
diff --git a/content/public/browser/url_handling_notifications.cc b/content/public/browser/url_handling_notifications.cc
new file mode 100644
index 0000000000000000000000000000000000000000..17c1550e2b2673c67302b361c8d2aa45db4a3381
--- /dev/null
+++ b/content/public/browser/url_handling_notifications.cc
@@ -0,0 +1,18 @@
+// 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/url_handling_notifications.h"
+
+namespace content {
+
+ForwardUrlToBrowserDetails::ForwardUrlToBrowserDetails(const GURL& url,
+ const GURL& referrer_url)
+ : url(url),
+ referrer_url(referrer_url) {
+}
+
+ForwardUrlToBrowserDetails::~ForwardUrlToBrowserDetails() {
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698