| Index: Source/web/WebDocument.cpp
|
| diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp
|
| index 0321635d4aa3e7421ddab61d7f137841408136ab..4ae70068c40cdda3ec899a57a78658539d673e88 100644
|
| --- a/Source/web/WebDocument.cpp
|
| +++ b/Source/web/WebDocument.cpp
|
| @@ -65,8 +65,6 @@
|
| #include "wtf/PassRefPtr.h"
|
| #include <v8.h>
|
|
|
| -using namespace blink;
|
| -
|
| namespace blink {
|
|
|
| WebURL WebDocument::url() const
|
| @@ -299,7 +297,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 = blink::IntRect(value.bounds);
|
| + draggableRegions[i].bounds = IntRect(value.bounds);
|
| }
|
| }
|
| return draggableRegions;
|
|
|