| Index: third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebViewTest.cpp b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| index e91eee8f9885e38fb5e7234c829d9f463453fbdb..4109a2beaf9a4cda16442d259b6ffc71d7683d72 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| @@ -535,7 +535,7 @@ TEST_F(WebViewTest, SetBaseBackgroundColorBeforeMainFrame)
|
| {
|
| const WebColor kBlue = 0xFF0000FF;
|
| FrameTestHelpers::TestWebViewClient webViewClient;
|
| - WebView* webView = WebViewImpl::create(&webViewClient);
|
| + WebViewImpl* webView = WebViewImpl::create(&webViewClient);
|
| EXPECT_NE(kBlue, webView->backgroundColor());
|
| // webView does not have a frame yet, but we should still be able to set the background color.
|
| webView->setBaseBackgroundColor(kBlue);
|
| @@ -553,7 +553,7 @@ TEST_F(WebViewTest, SetBaseBackgroundColorAndBlendWithExistingContent)
|
| const int kWidth = 100;
|
| const int kHeight = 100;
|
|
|
| - WebView* webView = m_webViewHelper.initialize();
|
| + WebViewImpl* webView = m_webViewHelper.initialize();
|
|
|
| // Set WebView background to green with alpha.
|
| webView->setBaseBackgroundColor(kAlphaGreen);
|
|
|