Index: chrome/browser/ui/webui/test_chrome_web_ui_factory_browsertest.cc |
=================================================================== |
--- chrome/browser/ui/webui/test_chrome_web_ui_factory_browsertest.cc (revision 116011) |
+++ chrome/browser/ui/webui/test_chrome_web_ui_factory_browsertest.cc (working copy) |
@@ -10,6 +10,7 @@ |
#include "testing/gmock/include/gmock/gmock.h" |
#include "testing/gtest/include/gtest/gtest.h" |
+using content::WebContents; |
using ::testing::_; |
using ::testing::Eq; |
using ::testing::StrictMock; |
@@ -25,7 +26,7 @@ |
// expected. |
class MockWebUIProvider : public TestChromeWebUIFactory::WebUIProvider { |
public: |
- MOCK_METHOD2(NewWebUI, WebUI*(TabContents* tab_contents, const GURL& url)); |
+ MOCK_METHOD2(NewWebUI, WebUI*(WebContents* tab_contents, const GURL& url)); |
}; |
// Dummy URL location for us to override. |