| 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 CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ |
| 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ | 6 #define CONTENT_SHELL_RENDERER_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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 void DidReceiveTitle(blink::WebLocalFrame*, const blink::WebString& title, | 182 void DidReceiveTitle(blink::WebLocalFrame*, const blink::WebString& title, |
| 183 blink::WebTextDirection); | 183 blink::WebTextDirection); |
| 184 void DidChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); | 184 void DidChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); |
| 185 void DidFinishDocumentLoad(blink::WebLocalFrame*); | 185 void DidFinishDocumentLoad(blink::WebLocalFrame*); |
| 186 void DidHandleOnloadEvents(blink::WebLocalFrame*); | 186 void DidHandleOnloadEvents(blink::WebLocalFrame*); |
| 187 void DidFailLoad(blink::WebLocalFrame*, const blink::WebURLError&); | 187 void DidFailLoad(blink::WebLocalFrame*, const blink::WebURLError&); |
| 188 void DidFinishLoad(blink::WebLocalFrame*); | 188 void DidFinishLoad(blink::WebLocalFrame*); |
| 189 void DidChangeLocationWithinPage(blink::WebLocalFrame*); | 189 void DidChangeLocationWithinPage(blink::WebLocalFrame*); |
| 190 void DidDetectXSS(blink::WebLocalFrame*, const blink::WebURL& insecureURL, | 190 void DidDetectXSS(blink::WebLocalFrame*, const blink::WebURL& insecureURL, |
| 191 bool didBlockEntirePage); | 191 bool didBlockEntirePage); |
| 192 void FrameDetached(blink::WebFrame*); |
| 192 void DidDispatchPingLoader(blink::WebLocalFrame*, const blink::WebURL&); | 193 void DidDispatchPingLoader(blink::WebLocalFrame*, const blink::WebURL&); |
| 193 void WillRequestResource(blink::WebLocalFrame*, | 194 void WillRequestResource(blink::WebLocalFrame*, |
| 194 const blink::WebCachedURLRequest&); | 195 const blink::WebCachedURLRequest&); |
| 195 void WillSendRequest(blink::WebLocalFrame*, unsigned identifier, | 196 void WillSendRequest(blink::WebLocalFrame*, unsigned identifier, |
| 196 blink::WebURLRequest&, | 197 blink::WebURLRequest&, |
| 197 const blink::WebURLResponse& redirectResponse); | 198 const blink::WebURLResponse& redirectResponse); |
| 198 void DidReceiveResponse(blink::WebLocalFrame*, unsigned identifier, | 199 void DidReceiveResponse(blink::WebLocalFrame*, unsigned identifier, |
| 199 const blink::WebURLResponse&); | 200 const blink::WebURLResponse&); |
| 200 void DidChangeResourcePriority(blink::WebLocalFrame*, unsigned identifier, | 201 void DidChangeResourcePriority(blink::WebLocalFrame*, unsigned identifier, |
| 201 const blink::WebURLRequest::Priority&, | 202 const blink::WebURLRequest::Priority&, |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 WebTestProxyBase::PostSpellCheckEvent(eventName); | 359 WebTestProxyBase::PostSpellCheckEvent(eventName); |
| 359 } | 360 } |
| 360 | 361 |
| 361 private: | 362 private: |
| 362 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); | 363 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); |
| 363 }; | 364 }; |
| 364 | 365 |
| 365 } // namespace content | 366 } // namespace content |
| 366 | 367 |
| 367 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ | 368 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_PROXY_H_ |
| OLD | NEW |