Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: components/test_runner/web_test_proxy.h

Issue 1480043002: [WIP] Call WebTestProxyBase::CheckDone() in didStopLoading() Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/test_runner/web_frame_test_proxy.h ('k') | components/test_runner/web_test_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « components/test_runner/web_frame_test_proxy.h ('k') | components/test_runner/web_test_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698