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 |