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

Unified Diff: Source/bindings/core/v8/custom/V8DataViewCustom.cpp

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
Index: Source/bindings/core/v8/custom/V8DataViewCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8DataViewCustom.cpp b/Source/bindings/core/v8/custom/V8DataViewCustom.cpp
index 99da950b24ebe3f06bb978b91b24ba412b4b1314..c27d05b1729d9ef1b575e3d0f7d43b97e9245b4b 100644
--- a/Source/bindings/core/v8/custom/V8DataViewCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8DataViewCustom.cpp
@@ -30,7 +30,7 @@
#include "bindings/core/v8/custom/V8ArrayBufferViewCustom.h"
#include "core/html/canvas/DataView.h"
-namespace WebCore {
+namespace blink {
static void initializeScriptWrappableForInterface(DataView* object)
{
@@ -40,13 +40,13 @@ static void initializeScriptWrappableForInterface(DataView* object)
ASSERT_NOT_REACHED();
}
-} // namespace WebCore
+} // namespace blink
// In ScriptWrappable::init, the use of a local function declaration has an issue on Windows:
// the local declaration does not pick up the surrounding namespace. Therefore, we provide this function
// in the global namespace.
// (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/feedback/details/664619/the-namespace-of-local-function-declarations-in-c)
-void webCoreInitializeScriptWrappableForInterface(WebCore::DataView* object)
+void webCoreInitializeScriptWrappableForInterface(blink::DataView* object)
{
- WebCore::initializeScriptWrappableForInterface(object);
+ blink::initializeScriptWrappableForInterface(object);
}

Powered by Google App Engine
This is Rietveld 408576698