| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 const blink::WebString& title, | 195 const blink::WebString& title, |
| 196 blink::WebTextDirection text_direction); | 196 blink::WebTextDirection text_direction); |
| 197 void DidChangeIcon(blink::WebLocalFrame* frame, | 197 void DidChangeIcon(blink::WebLocalFrame* frame, |
| 198 blink::WebIconURL::Type icon_type); | 198 blink::WebIconURL::Type icon_type); |
| 199 void DidFinishDocumentLoad(blink::WebLocalFrame* frame); | 199 void DidFinishDocumentLoad(blink::WebLocalFrame* frame); |
| 200 void DidHandleOnloadEvents(blink::WebLocalFrame* frame); | 200 void DidHandleOnloadEvents(blink::WebLocalFrame* frame); |
| 201 void DidFailLoad(blink::WebLocalFrame* frame, | 201 void DidFailLoad(blink::WebLocalFrame* frame, |
| 202 const blink::WebURLError& error, | 202 const blink::WebURLError& error, |
| 203 blink::WebHistoryCommitType commit_type); | 203 blink::WebHistoryCommitType commit_type); |
| 204 void DidFinishLoad(blink::WebLocalFrame* frame); | 204 void DidFinishLoad(blink::WebLocalFrame* frame); |
| 205 void DidStopLoading(blink::WebLocalFrame*); |
| 205 void DidChangeLocationWithinPage(blink::WebLocalFrame* frame); | 206 void DidChangeLocationWithinPage(blink::WebLocalFrame* frame); |
| 206 void DidDetectXSS(const blink::WebURL& insecure_url, | 207 void DidDetectXSS(const blink::WebURL& insecure_url, |
| 207 bool did_block_entire_page); | 208 bool did_block_entire_page); |
| 208 void DidDispatchPingLoader(blink::WebLocalFrame* frame, | 209 void DidDispatchPingLoader(blink::WebLocalFrame* frame, |
| 209 const blink::WebURL& url); | 210 const blink::WebURL& url); |
| 210 void WillSendRequest(blink::WebLocalFrame* frame, | 211 void WillSendRequest(blink::WebLocalFrame* frame, |
| 211 unsigned identifier, | 212 unsigned identifier, |
| 212 blink::WebURLRequest& request, | 213 blink::WebURLRequest& request, |
| 213 const blink::WebURLResponse& redirect_response); | 214 const blink::WebURLResponse& redirect_response); |
| 214 void DidReceiveResponse(blink::WebLocalFrame* frame, | 215 void DidReceiveResponse(blink::WebLocalFrame* frame, |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 | 389 |
| 389 private: | 390 private: |
| 390 virtual ~WebTestProxy() {} | 391 virtual ~WebTestProxy() {} |
| 391 | 392 |
| 392 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); | 393 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); |
| 393 }; | 394 }; |
| 394 | 395 |
| 395 } // namespace test_runner | 396 } // namespace test_runner |
| 396 | 397 |
| 397 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ | 398 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ |
| OLD | NEW |