| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 const blink::WebString& title, | 77 const blink::WebString& title, |
| 78 blink::WebTextDirection direction) override; | 78 blink::WebTextDirection direction) override; |
| 79 void didChangeIcon(blink::WebLocalFrame* frame, | 79 void didChangeIcon(blink::WebLocalFrame* frame, |
| 80 blink::WebIconURL::Type icon_type) override; | 80 blink::WebIconURL::Type icon_type) override; |
| 81 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; | 81 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; |
| 82 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; | 82 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; |
| 83 void didFailLoad(blink::WebLocalFrame* frame, | 83 void didFailLoad(blink::WebLocalFrame* frame, |
| 84 const blink::WebURLError& error, | 84 const blink::WebURLError& error, |
| 85 blink::WebHistoryCommitType commit_type) override; | 85 blink::WebHistoryCommitType commit_type) override; |
| 86 void didFinishLoad(blink::WebLocalFrame* frame) override; | 86 void didFinishLoad(blink::WebLocalFrame* frame) override; |
| 87 void didNavigateWithinPage(blink::WebLocalFrame* frame, |
| 88 const blink::WebHistoryItem& history_item, |
| 89 blink::WebHistoryCommitType commit_type, |
| 90 bool contentInitiated) override; |
| 91 void didStartLoading(bool to_different_document) override; |
| 87 void didStopLoading() override; | 92 void didStopLoading() override; |
| 88 void didDetectXSS(const blink::WebURL& insecure_url, | 93 void didDetectXSS(const blink::WebURL& insecure_url, |
| 89 bool did_block_entire_page) override; | 94 bool did_block_entire_page) override; |
| 90 void didDispatchPingLoader(const blink::WebURL& url) override; | 95 void didDispatchPingLoader(const blink::WebURL& url) override; |
| 91 void willSendRequest(blink::WebLocalFrame* frame, | 96 void willSendRequest(blink::WebLocalFrame* frame, |
| 92 unsigned identifier, | 97 unsigned identifier, |
| 93 blink::WebURLRequest& request, | 98 blink::WebURLRequest& request, |
| 94 const blink::WebURLResponse& redirect_response) override; | 99 const blink::WebURLResponse& redirect_response) override; |
| 95 void didReceiveResponse(unsigned identifier, | 100 void didReceiveResponse(unsigned identifier, |
| 96 const blink::WebURLResponse& response) override; | 101 const blink::WebURLResponse& response) override; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 120 // to track resource requests spanning willSendRequest, didReceiveResponse, | 125 // to track resource requests spanning willSendRequest, didReceiveResponse, |
| 121 // didChangeResourcePriority, didFinishResourceLoad. | 126 // didChangeResourcePriority, didFinishResourceLoad. |
| 122 std::map<unsigned, std::string> resource_identifier_map_; | 127 std::map<unsigned, std::string> resource_identifier_map_; |
| 123 | 128 |
| 124 DISALLOW_COPY_AND_ASSIGN(WebFrameTestClient); | 129 DISALLOW_COPY_AND_ASSIGN(WebFrameTestClient); |
| 125 }; | 130 }; |
| 126 | 131 |
| 127 } // namespace test_runner | 132 } // namespace test_runner |
| 128 | 133 |
| 129 #endif // COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ | 134 #endif // COMPONENTS_TEST_RUNNER_WEB_FRAME_TEST_CLIENT_H_ |
| OLD | NEW |