| 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..356018dd7f33d2aa4b55f4136e4334e0456ed2c7
|
| --- /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
|
|
|