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

Unified Diff: content/public/common/referrer.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « content/public/common/page_state.cc ('k') | content/public/common/show_desktop_notification_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/referrer.h
diff --git a/content/public/common/referrer.h b/content/public/common/referrer.h
index c30f4b8bb7e6459169e3ba4c19380a6a89613fba..b10bfd6c28e6cd96f6e44a5a2070904693fae979 100644
--- a/content/public/common/referrer.h
+++ b/content/public/common/referrer.h
@@ -15,14 +15,14 @@ namespace content {
// applied to this URL. When passing around referrers that will eventually end
// up being used for URL requests, always use this struct.
struct CONTENT_EXPORT Referrer {
- Referrer(const GURL& url, WebKit::WebReferrerPolicy policy) : url(url),
+ Referrer(const GURL& url, blink::WebReferrerPolicy policy) : url(url),
policy(policy) {
}
- Referrer() : policy(WebKit::WebReferrerPolicyDefault) {
+ Referrer() : policy(blink::WebReferrerPolicyDefault) {
}
GURL url;
- WebKit::WebReferrerPolicy policy;
+ blink::WebReferrerPolicy policy;
};
} // namespace content
« no previous file with comments | « content/public/common/page_state.cc ('k') | content/public/common/show_desktop_notification_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698