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

Unified Diff: Source/web/WebDocument.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
« no previous file with comments | « Source/web/WebDevToolsFrontendImpl.cpp ('k') | Source/web/WebDocumentType.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDocument.cpp
diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp
index 5a106e3b2f726dc5c30c44f34b1a803cc3d5f32d..d0b9127038483670a7d083092589b1f46f303167 100644
--- a/Source/web/WebDocument.cpp
+++ b/Source/web/WebDocument.cpp
@@ -66,7 +66,7 @@
#include "wtf/PassRefPtr.h"
#include <v8.h>
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -287,7 +287,7 @@ WebVector<WebDraggableRegion> WebDocument::draggableRegions() const
for (size_t i = 0; i < regions.size(); i++) {
const AnnotatedRegionValue& value = regions[i];
draggableRegions[i].draggable = value.draggable;
- draggableRegions[i].bounds = WebCore::IntRect(value.bounds);
+ draggableRegions[i].bounds = blink::IntRect(value.bounds);
}
}
return draggableRegions;
« no previous file with comments | « Source/web/WebDevToolsFrontendImpl.cpp ('k') | Source/web/WebDocumentType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698