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

Unified Diff: public/platform/WebSerializedOrigin.h

Issue 401973003: Rename WebCore namespace to blink in Public (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « public/platform/WebScrollbarThemePainter.h ('k') | public/platform/WebServiceWorkerProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebSerializedOrigin.h
diff --git a/public/platform/WebSerializedOrigin.h b/public/platform/WebSerializedOrigin.h
index 0e01ae4cca0e0f2e6c9eec9f9a32de98d7084a1b..322ed82c903b9ba80cb23e8157a7b287b0721ba6 100644
--- a/public/platform/WebSerializedOrigin.h
+++ b/public/platform/WebSerializedOrigin.h
@@ -8,7 +8,7 @@
#include "WebString.h"
#if INSIDE_BLINK
-namespace WebCore { class SecurityOrigin; }
+namespace blink { class SecurityOrigin; }
#else
#include <url/origin.h>
#endif
@@ -20,7 +20,7 @@ class WebSerializedOrigin {
public:
WebSerializedOrigin() : m_string("null") { }
#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebSerializedOrigin(const WebCore::SecurityOrigin&);
+ BLINK_PLATFORM_EXPORT WebSerializedOrigin(const blink::SecurityOrigin&);
#else
WebSerializedOrigin(const url::Origin& origin) : m_string(WebString::fromUTF8(origin.string())) { }
operator url::Origin() const { return url::Origin(m_string.utf8()); }
« no previous file with comments | « public/platform/WebScrollbarThemePainter.h ('k') | public/platform/WebServiceWorkerProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698