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

Unified Diff: public/platform/WebData.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/WebCursorInfo.h ('k') | public/platform/WebDragData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebData.h
diff --git a/public/platform/WebData.h b/public/platform/WebData.h
index 0fc8ef18a0a2a9e0bdfaea5a59f0bb5272b0937c..5630c71d162cd4a494b1f62abc7b0907dc9cf4b5 100644
--- a/public/platform/WebData.h
+++ b/public/platform/WebData.h
@@ -34,7 +34,7 @@
#include "WebCommon.h"
#include "WebPrivatePtr.h"
-namespace WebCore { class SharedBuffer; }
+namespace blink { class SharedBuffer; }
namespace blink {
@@ -80,9 +80,9 @@ public:
bool isNull() const { return m_private.isNull(); }
#if INSIDE_BLINK
- WebData(const PassRefPtr<WebCore::SharedBuffer>&);
- WebData& operator=(const PassRefPtr<WebCore::SharedBuffer>&);
- operator PassRefPtr<WebCore::SharedBuffer>() const;
+ WebData(const PassRefPtr<blink::SharedBuffer>&);
+ WebData& operator=(const PassRefPtr<blink::SharedBuffer>&);
+ operator PassRefPtr<blink::SharedBuffer>() const;
#else
template <class C>
WebData(const C& c)
@@ -99,7 +99,7 @@ public:
#endif
private:
- WebPrivatePtr<WebCore::SharedBuffer> m_private;
+ WebPrivatePtr<blink::SharedBuffer> m_private;
};
} // namespace blink
« no previous file with comments | « public/platform/WebCursorInfo.h ('k') | public/platform/WebDragData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698