| Index: content/public/browser/url_handling_notifications.h
|
| diff --git a/content/public/browser/url_handling_notifications.h b/content/public/browser/url_handling_notifications.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..90e1bece4297198662a4b0bd227786e3f005f81d
|
| --- /dev/null
|
| +++ b/content/public/browser/url_handling_notifications.h
|
| @@ -0,0 +1,25 @@
|
| +// 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_URL_HANDLING_NOTIFICATIONS_H_
|
| +#define CONTENT_PUBLIC_BROWSER_URL_HANDLING_NOTIFICATIONS_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "content/common/content_export.h"
|
| +#include "googleurl/src/gurl.h"
|
| +
|
| +namespace content {
|
| +
|
| +struct CONTENT_EXPORT ForwardUrlToBrowserDetails {
|
| + ForwardUrlToBrowserDetails(const GURL& url, const GURL& referrer_url);
|
| + ~ForwardUrlToBrowserDetails();
|
| +
|
| + GURL url;
|
| + GURL referrer_url;
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_BROWSER_URL_HANDLING_NOTIFICATIONS_H_
|
|
|