| 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 #ifndef COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ | 6 #define COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 int intra_priority_value) override; | 99 int intra_priority_value) override; |
| 100 void didFinishResourceLoad(blink::WebLocalFrame* frame, | 100 void didFinishResourceLoad(blink::WebLocalFrame* frame, |
| 101 unsigned identifier) override; | 101 unsigned identifier) override; |
| 102 blink::WebNavigationPolicy decidePolicyForNavigation( | 102 blink::WebNavigationPolicy decidePolicyForNavigation( |
| 103 const blink::WebFrameClient::NavigationPolicyInfo& info) override; | 103 const blink::WebFrameClient::NavigationPolicyInfo& info) override; |
| 104 void checkIfAudioSinkExistsAndIsAuthorized( | 104 void checkIfAudioSinkExistsAndIsAuthorized( |
| 105 const blink::WebString& sink_id, | 105 const blink::WebString& sink_id, |
| 106 const blink::WebSecurityOrigin& security_origin, | 106 const blink::WebSecurityOrigin& security_origin, |
| 107 blink::WebSetSinkIdCallbacks* web_callbacks) override; | 107 blink::WebSetSinkIdCallbacks* web_callbacks) override; |
| 108 void didClearWindowObject(blink::WebLocalFrame* frame) override; | 108 void didClearWindowObject(blink::WebLocalFrame* frame) override; |
| 109 bool runFileChooser(const blink::WebFileChooserParams& params, |
| 110 blink::WebFileChooserCompletion* completion) override; |
| 109 | 111 |
| 110 private: | 112 private: |
| 111 // Borrowed pointers to other parts of Layout Tests state. | 113 // Borrowed pointers to other parts of Layout Tests state. |
| 112 TestRunner* test_runner_; | 114 TestRunner* test_runner_; |
| 113 WebTestDelegate* delegate_; | 115 WebTestDelegate* delegate_; |
| 114 WebTestProxyBase* web_test_proxy_base_; | 116 WebTestProxyBase* web_test_proxy_base_; |
| 115 WebFrameTestProxyBase* web_frame_test_proxy_base_; | 117 WebFrameTestProxyBase* web_frame_test_proxy_base_; |
| 116 | 118 |
| 117 // Map from request identifier into resource url description. The map is used | 119 // Map from request identifier into resource url description. The map is used |
| 118 // to track resource requests spanning willSendRequest, didReceiveResponse, | 120 // to track resource requests spanning willSendRequest, didReceiveResponse, |
| 119 // didChangeResourcePriority, didFinishResourceLoad. | 121 // didChangeResourcePriority, didFinishResourceLoad. |
| 120 std::map<unsigned, std::string> resource_identifier_map_; | 122 std::map<unsigned, std::string> resource_identifier_map_; |
| 121 | 123 |
| 122 DISALLOW_COPY_AND_ASSIGN(WebFrameTestClient); | 124 DISALLOW_COPY_AND_ASSIGN(WebFrameTestClient); |
| 123 }; | 125 }; |
| 124 | 126 |
| 125 } // namespace test_runner | 127 } // namespace test_runner |
| 126 | 128 |
| 127 #endif // COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ | 129 #endif // COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ |
| OLD | NEW |