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

Unified Diff: Source/bindings/core/v8/ScriptWrappable.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (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 | « Source/bindings/core/v8/ScriptValue.cpp ('k') | Source/bindings/core/v8/SerializedScriptValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptWrappable.h
diff --git a/Source/bindings/core/v8/ScriptWrappable.h b/Source/bindings/core/v8/ScriptWrappable.h
index 7ed4ab2f528022cea957fdf898ba8db8855f1662..b0e176c1f05a95e8a3b42cbfc1207c60a1992462 100644
--- a/Source/bindings/core/v8/ScriptWrappable.h
+++ b/Source/bindings/core/v8/ScriptWrappable.h
@@ -43,7 +43,7 @@ template <class C> inline void initializeScriptWrappableHelper(C* object)
webCoreInitializeScriptWrappableForInterface(object);
}
-namespace WebCore {
+namespace blink {
/**
* ScriptWrappable wraps a V8 object and its WrapperTypeInfo.
@@ -55,7 +55,7 @@ namespace WebCore {
* The physical state space of ScriptWrappable is:
* - uintptr_t m_wrapperOrTypeInfo;
* - if 0: the ScriptWrappable is uninitialized/empty.
- * - if even: a pointer to WebCore::TypeInfo
+ * - if even: a pointer to blink::TypeInfo
* - if odd: a pointer to v8::Persistent<v8::Object> + 1.
*
* In other words, one integer represents one of two object pointers,
@@ -279,6 +279,6 @@ private:
}
};
-} // namespace WebCore
+} // namespace blink
#endif // ScriptWrappable_h
« no previous file with comments | « Source/bindings/core/v8/ScriptValue.cpp ('k') | Source/bindings/core/v8/SerializedScriptValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698