OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_TEST_PROXY_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ |
6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ | 6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 blink::WebTextDirection text_direction); | 197 blink::WebTextDirection text_direction); |
198 void DidChangeIcon(blink::WebLocalFrame* frame, | 198 void DidChangeIcon(blink::WebLocalFrame* frame, |
199 blink::WebIconURL::Type icon_type); | 199 blink::WebIconURL::Type icon_type); |
200 void DidFinishDocumentLoad(blink::WebLocalFrame* frame); | 200 void DidFinishDocumentLoad(blink::WebLocalFrame* frame); |
201 void DidHandleOnloadEvents(blink::WebLocalFrame* frame); | 201 void DidHandleOnloadEvents(blink::WebLocalFrame* frame); |
202 void DidFailLoad(blink::WebLocalFrame* frame, | 202 void DidFailLoad(blink::WebLocalFrame* frame, |
203 const blink::WebURLError& error, | 203 const blink::WebURLError& error, |
204 blink::WebHistoryCommitType commit_type); | 204 blink::WebHistoryCommitType commit_type); |
205 void DidFinishLoad(blink::WebLocalFrame* frame); | 205 void DidFinishLoad(blink::WebLocalFrame* frame); |
206 void DidChangeLocationWithinPage(blink::WebLocalFrame* frame); | 206 void DidChangeLocationWithinPage(blink::WebLocalFrame* frame); |
207 void DidDetectXSS(blink::WebLocalFrame* frame, | 207 void DidDetectXSS(const blink::WebURL& insecure_url, |
208 const blink::WebURL& insecure_url, | |
209 bool did_block_entire_page); | 208 bool did_block_entire_page); |
210 void DidDispatchPingLoader(blink::WebLocalFrame* frame, | 209 void DidDispatchPingLoader(blink::WebLocalFrame* frame, |
211 const blink::WebURL& url); | 210 const blink::WebURL& url); |
212 void WillSendRequest(blink::WebLocalFrame* frame, | 211 void WillSendRequest(blink::WebLocalFrame* frame, |
213 unsigned identifier, | 212 unsigned identifier, |
214 blink::WebURLRequest& request, | 213 blink::WebURLRequest& request, |
215 const blink::WebURLResponse& redirect_response); | 214 const blink::WebURLResponse& redirect_response); |
216 void DidReceiveResponse(blink::WebLocalFrame* frame, | 215 void DidReceiveResponse(blink::WebLocalFrame* frame, |
217 unsigned identifier, | 216 unsigned identifier, |
218 const blink::WebURLResponse& response); | 217 const blink::WebURLResponse& response); |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 | 389 |
391 private: | 390 private: |
392 virtual ~WebTestProxy() {} | 391 virtual ~WebTestProxy() {} |
393 | 392 |
394 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); | 393 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); |
395 }; | 394 }; |
396 | 395 |
397 } // namespace test_runner | 396 } // namespace test_runner |
398 | 397 |
399 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ | 398 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ |
OLD | NEW |