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

Unified Diff: Source/web/tests/ImeOnFocusTest.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/tests/FrameTestHelpers.cpp ('k') | Source/web/tests/KeyboardTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/ImeOnFocusTest.cpp
diff --git a/Source/web/tests/ImeOnFocusTest.cpp b/Source/web/tests/ImeOnFocusTest.cpp
index a7231b81db979e4c590dbac965794035d0432895..691c1489ba6f63129b6294b6e5bd9b261d5075cc 100644
--- a/Source/web/tests/ImeOnFocusTest.cpp
+++ b/Source/web/tests/ImeOnFocusTest.cpp
@@ -57,14 +57,14 @@ public:
}
protected:
- void sendGestureTap(WebView*, WebCore::IntPoint);
- void runImeOnFocusTest(std::string, int, WebCore::IntPoint tapPoint = WebCore::IntPoint(-1, -1));
+ void sendGestureTap(WebView*, blink::IntPoint);
+ void runImeOnFocusTest(std::string, int, blink::IntPoint tapPoint = blink::IntPoint(-1, -1));
std::string m_baseURL;
FrameTestHelpers::WebViewHelper m_webViewHelper;
};
-void ImeOnFocusTest::sendGestureTap(WebView* webView, WebCore::IntPoint clientPoint)
+void ImeOnFocusTest::sendGestureTap(WebView* webView, blink::IntPoint clientPoint)
{
WebGestureEvent webGestureEvent;
webGestureEvent.type = WebInputEvent::GestureTap;
@@ -80,7 +80,7 @@ void ImeOnFocusTest::sendGestureTap(WebView* webView, WebCore::IntPoint clientPo
FrameTestHelpers::runPendingTasks();
}
-void ImeOnFocusTest::runImeOnFocusTest(std::string file, int expectedImeRequestCount, WebCore::IntPoint tapPoint)
+void ImeOnFocusTest::runImeOnFocusTest(std::string file, int expectedImeRequestCount, blink::IntPoint tapPoint)
{
ImeRequestTrackingWebViewClient client;
URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(m_baseURL), WebString::fromUTF8(file));
@@ -109,7 +109,7 @@ TEST_F(ImeOnFocusTest, OnAutofocus)
TEST_F(ImeOnFocusTest, OnUserGesture)
{
- runImeOnFocusTest("ime-on-focus-on-user-gesture.html", 1, WebCore::IntPoint(50, 50));
+ runImeOnFocusTest("ime-on-focus-on-user-gesture.html", 1, blink::IntPoint(50, 50));
}
}
« no previous file with comments | « Source/web/tests/FrameTestHelpers.cpp ('k') | Source/web/tests/KeyboardTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698