| Index: ios/web_view/test/web_view_test.h
|
| diff --git a/ios/web_view/test/chrome_web_view_test.h b/ios/web_view/test/web_view_test.h
|
| similarity index 85%
|
| rename from ios/web_view/test/chrome_web_view_test.h
|
| rename to ios/web_view/test/web_view_test.h
|
| index d6e735340bcbf9537f38652b359ef34177a9ec85..6ae8988b35dd1a46e267df1ef9af249336df4dc0 100644
|
| --- a/ios/web_view/test/chrome_web_view_test.h
|
| +++ b/ios/web_view/test/web_view_test.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef IOS_WEB_VIEW_TEST_CHROME_WEB_VIEW_TEST_H_
|
| -#define IOS_WEB_VIEW_TEST_CHROME_WEB_VIEW_TEST_H_
|
| +#ifndef IOS_WEB_VIEW_TEST_WEB_VIEW_TEST_H_
|
| +#define IOS_WEB_VIEW_TEST_WEB_VIEW_TEST_H_
|
|
|
| #include <memory>
|
| #include <string>
|
| @@ -26,10 +26,10 @@ namespace ios_web_view {
|
| // A test fixture for testing CWVWebView. A test server is also created to
|
| // support loading content. The server supports the urls returned by the GetUrl*
|
| // methods below.
|
| -class ChromeWebViewTest : public PlatformTest {
|
| +class WebViewTest : public PlatformTest {
|
| protected:
|
| - ChromeWebViewTest();
|
| - ~ChromeWebViewTest() override;
|
| + WebViewTest();
|
| + ~WebViewTest() override;
|
|
|
| // Returns URL to an html page with title set to |title|.
|
| GURL GetUrlForPageWithTitle(const std::string& title);
|
| @@ -56,4 +56,4 @@ class ChromeWebViewTest : public PlatformTest {
|
|
|
| } // namespace ios_web_view
|
|
|
| -#endif // IOS_WEB_VIEW_TEST_CHROME_WEB_VIEW_TEST_H_
|
| +#endif // IOS_WEB_VIEW_TEST_WEB_VIEW_TEST_H_
|
|
|