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

Unified Diff: public/web/WebSerializedScriptValue.h

Issue 454103003: Cleanup namespace usage in public/web/Web[N-Z]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/web/WebSelectElement.h ('k') | public/web/WebServiceWorkerContextClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebSerializedScriptValue.h
diff --git a/public/web/WebSerializedScriptValue.h b/public/web/WebSerializedScriptValue.h
index 68ecb8a02cc70571323d74567ef6165adee2cecc..ec1ba9823d1e4a1ac34f44a9c51a8ad30a93c67d 100644
--- a/public/web/WebSerializedScriptValue.h
+++ b/public/web/WebSerializedScriptValue.h
@@ -34,14 +34,14 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPrivatePtr.h"
-namespace blink { class SerializedScriptValue; }
-
namespace v8 {
class Value;
template <class T> class Handle;
}
namespace blink {
+
+class SerializedScriptValue;
class WebString;
// FIXME: Should this class be in platform?
@@ -76,13 +76,13 @@ public:
BLINK_EXPORT v8::Handle<v8::Value> deserialize();
#if BLINK_IMPLEMENTATION
- WebSerializedScriptValue(const WTF::PassRefPtr<blink::SerializedScriptValue>&);
- WebSerializedScriptValue& operator=(const WTF::PassRefPtr<blink::SerializedScriptValue>&);
- operator WTF::PassRefPtr<blink::SerializedScriptValue>() const;
+ WebSerializedScriptValue(const WTF::PassRefPtr<SerializedScriptValue>&);
+ WebSerializedScriptValue& operator=(const WTF::PassRefPtr<SerializedScriptValue>&);
+ operator WTF::PassRefPtr<SerializedScriptValue>() const;
#endif
private:
- WebPrivatePtr<blink::SerializedScriptValue> m_private;
+ WebPrivatePtr<SerializedScriptValue> m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebSelectElement.h ('k') | public/web/WebServiceWorkerContextClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698