OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/test_runner/web_view_test_client.h" | 5 #include "components/test_runner/web_view_test_client.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/i18n/rtl.h" | 9 #include "base/i18n/rtl.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 } | 139 } |
140 | 140 |
141 blink::WebString WebViewTestClient::acceptLanguages() { | 141 blink::WebString WebViewTestClient::acceptLanguages() { |
142 return blink::WebString::fromUTF8(test_runner_->GetAcceptLanguages()); | 142 return blink::WebString::fromUTF8(test_runner_->GetAcceptLanguages()); |
143 } | 143 } |
144 | 144 |
145 WebTestDelegate* WebViewTestClient::delegate() { | 145 WebTestDelegate* WebViewTestClient::delegate() { |
146 return web_test_proxy_base_->delegate(); | 146 return web_test_proxy_base_->delegate(); |
147 } | 147 } |
148 | 148 |
| 149 void WebViewTestClient::didFocus() { |
| 150 test_runner_->SetFocus(web_test_proxy_base_->web_view(), true); |
| 151 } |
| 152 |
149 } // namespace test_runner | 153 } // namespace test_runner |
OLD | NEW |