Title: [90969] trunk/Source/WebKit/chromium
- Revision
- 90969
- Author
- [email protected]
- Date
- 2011-07-13 18:46:19 -0700 (Wed, 13 Jul 2011)
Log Message
[chromium] Clean undeeded WebCore:: namespace prefixing from WebBindings.
https://bugs.webkit.org/show_bug.cgi?id=64361
Patch by Noel Gordon <[email protected]> on 2011-07-13
Reviewed by Kent Tamura.
* src/WebBindings.cpp:
(WebKit::makeIntArrayImpl):
(WebKit::makeStringArrayImpl):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (90968 => 90969)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-07-14 01:39:12 UTC (rev 90968)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-07-14 01:46:19 UTC (rev 90969)
@@ -1,3 +1,14 @@
+2011-07-13 Noel Gordon <[email protected]>
+
+ [chromium] Clean undeeded WebCore:: namespace prefixing from WebBindings.
+ https://bugs.webkit.org/show_bug.cgi?id=64361
+
+ Reviewed by Kent Tamura.
+
+ * src/WebBindings.cpp:
+ (WebKit::makeIntArrayImpl):
+ (WebKit::makeStringArrayImpl):
+
2011-07-13 James Robinson <[email protected]>
[chromium] No implementation defined for WTF::monotonicallyIncreasingTime
Modified: trunk/Source/WebKit/chromium/src/WebBindings.cpp (90968 => 90969)
--- trunk/Source/WebKit/chromium/src/WebBindings.cpp 2011-07-14 01:39:12 UTC (rev 90968)
+++ trunk/Source/WebKit/chromium/src/WebBindings.cpp 2011-07-14 01:46:19 UTC (rev 90969)
@@ -241,7 +241,7 @@
for (size_t i = 0; i < data.size(); ++i)
result->Set(i, v8::Number::New(data[i]));
- WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
+ DOMWindow* window = V8Proxy::retrieveWindow(V8Proxy::currentContext());
return npCreateV8ScriptObject(0, result, window);
}
@@ -252,7 +252,7 @@
for (size_t i = 0; i < data.size(); ++i)
result->Set(i, data[i].data() ? v8::String::New(reinterpret_cast<const uint16_t*>((data[i].data())), data[i].length()) : v8::String::New(""));
- WebCore::DOMWindow* window = WebCore::V8Proxy::retrieveWindow(WebCore::V8Proxy::currentContext());
+ DOMWindow* window = V8Proxy::retrieveWindow(V8Proxy::currentContext());
return npCreateV8ScriptObject(0, result, window);
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes