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

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

Issue 1381003004: Better distinguish didFinishLoad and didStopLoading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 void DidEndEditing(); 158 void DidEndEditing();
159 bool CreateView(blink::WebLocalFrame* creator, 159 bool CreateView(blink::WebLocalFrame* creator,
160 const blink::WebURLRequest& request, 160 const blink::WebURLRequest& request,
161 const blink::WebWindowFeatures& features, 161 const blink::WebWindowFeatures& features,
162 const blink::WebString& frame_name, 162 const blink::WebString& frame_name,
163 blink::WebNavigationPolicy policy, 163 blink::WebNavigationPolicy policy,
164 bool suppress_opener); 164 bool suppress_opener);
165 blink::WebPlugin* CreatePlugin(blink::WebLocalFrame* frame, 165 blink::WebPlugin* CreatePlugin(blink::WebLocalFrame* frame,
166 const blink::WebPluginParams& params); 166 const blink::WebPluginParams& params);
167 void SetStatusText(const blink::WebString& text); 167 void SetStatusText(const blink::WebString& text);
168 void DidStopLoading();
169 void ShowContextMenu(const blink::WebContextMenuData& data); 168 void ShowContextMenu(const blink::WebContextMenuData& data);
170 blink::WebUserMediaClient* GetUserMediaClient(); 169 blink::WebUserMediaClient* GetUserMediaClient();
171 void PrintPage(blink::WebLocalFrame* frame); 170 void PrintPage(blink::WebLocalFrame* frame);
172 blink::WebSpeechRecognizer* GetSpeechRecognizer(); 171 blink::WebSpeechRecognizer* GetSpeechRecognizer();
173 bool RequestPointerLock(); 172 bool RequestPointerLock();
174 void RequestPointerUnlock(); 173 void RequestPointerUnlock();
175 bool IsPointerLocked(); 174 bool IsPointerLocked();
176 void DidFocus(); 175 void DidFocus();
177 void DidBlur(); 176 void DidBlur();
178 void SetToolTipText(const blink::WebString& text, 177 void SetToolTipText(const blink::WebString& text,
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 388
390 private: 389 private:
391 virtual ~WebTestProxy() {} 390 virtual ~WebTestProxy() {}
392 391
393 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); 392 DISALLOW_COPY_AND_ASSIGN(WebTestProxy);
394 }; 393 };
395 394
396 } // namespace test_runner 395 } // namespace test_runner
397 396
398 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ 397 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698