| Index: components/test_runner/test_runner_for_specific_view.h
|
| diff --git a/components/test_runner/test_runner_for_specific_view.h b/components/test_runner/test_runner_for_specific_view.h
|
| index e0c6d5e1938eec9d52a4421e0667f1480d84193a..003d5d9a86db58d853d343f07b077b709ea016f8 100644
|
| --- a/components/test_runner/test_runner_for_specific_view.h
|
| +++ b/components/test_runner/test_runner_for_specific_view.h
|
| @@ -31,7 +31,7 @@ class Arguments;
|
| namespace test_runner {
|
|
|
| class WebTestDelegate;
|
| -class WebTestProxyBase;
|
| +class WebViewTestProxyBase;
|
|
|
| // TestRunnerForSpecificView implements part of |testRunner| javascript bindings
|
| // that work with a view where the javascript call originated from. Examples:
|
| @@ -40,7 +40,8 @@ class WebTestProxyBase;
|
| // Note that "global" bindings are handled by TestRunner class.
|
| class TestRunnerForSpecificView {
|
| public:
|
| - explicit TestRunnerForSpecificView(WebTestProxyBase* web_test_proxy_base);
|
| + explicit TestRunnerForSpecificView(
|
| + WebViewTestProxyBase* web_view_test_proxy_base);
|
| ~TestRunnerForSpecificView();
|
|
|
| // Installs view-specific bindings (handled by |this|) and *also* global
|
| @@ -216,10 +217,10 @@ class TestRunnerForSpecificView {
|
| std::string SelectionAsMarkup();
|
| void SetViewSourceForFrame(const std::string& name, bool enabled);
|
|
|
| - // Helpers for accessing pointers exposed by |web_test_proxy_base_|.
|
| + // Helpers for accessing pointers exposed by |web_view_test_proxy_base_|.
|
| blink::WebView* web_view();
|
| WebTestDelegate* delegate();
|
| - WebTestProxyBase* web_test_proxy_base_;
|
| + WebViewTestProxyBase* web_view_test_proxy_base_;
|
|
|
| base::WeakPtrFactory<TestRunnerForSpecificView> weak_factory_;
|
|
|
|
|