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

Unified Diff: Source/web/tests/PinchViewportTest.cpp

Issue 545123002: Cleanup namespace usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/MHTMLTest.cpp ('k') | Source/web/tests/SpinLockTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/PinchViewportTest.cpp
diff --git a/Source/web/tests/PinchViewportTest.cpp b/Source/web/tests/PinchViewportTest.cpp
index f6d3af15963ce1b40344f837460ac7a95f60d99f..5e34221f8fe38c5d14032894b48dcb345c6c90fe 100644
--- a/Source/web/tests/PinchViewportTest.cpp
+++ b/Source/web/tests/PinchViewportTest.cpp
@@ -556,7 +556,7 @@ TEST_F(PinchViewportTest, TestRestoredFromHistoryItem)
WebHistoryItem item;
item.initialize();
- WebURL destinationURL(blink::URLTestHelpers::toKURL(m_baseURL + "200-by-300.html"));
+ WebURL destinationURL(URLTestHelpers::toKURL(m_baseURL + "200-by-300.html"));
item.setURLString(destinationURL.string());
item.setPinchViewportScrollOffset(WebFloatPoint(100, 120));
item.setPageScaleFactor(2);
@@ -580,7 +580,7 @@ TEST_F(PinchViewportTest, TestRestoredFromLegacyHistoryItem)
WebHistoryItem item;
item.initialize();
- WebURL destinationURL(blink::URLTestHelpers::toKURL(m_baseURL + "200-by-300-viewport.html"));
+ WebURL destinationURL(URLTestHelpers::toKURL(m_baseURL + "200-by-300-viewport.html"));
item.setURLString(destinationURL.string());
// (-1, -1) will be used if the HistoryItem is an older version prior to having
// pinch viewport scroll offset.
@@ -694,7 +694,7 @@ TEST_F(PinchViewportTest, TestWebViewResizeCausesViewportConstrainedLayout)
EXPECT_TRUE(navbar->needsLayout());
}
-class MockWebFrameClient : public blink::WebFrameClient {
+class MockWebFrameClient : public WebFrameClient {
public:
MOCK_METHOD1(showContextMenu, void(const WebContextMenuData&));
};
« no previous file with comments | « Source/web/tests/MHTMLTest.cpp ('k') | Source/web/tests/SpinLockTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698