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

Side by Side Diff: webkit/tools/test_shell/test_webview_delegate.h

Issue 10536207: Remove layoutTestController from test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: really fix mac Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // TestWebViewDelegate class: 5 // TestWebViewDelegate class:
6 // This class implements the WebViewDelegate methods for the test shell. One 6 // This class implements the WebViewDelegate methods for the test shell. One
7 // instance is owned by each TestShell. 7 // instance is owned by each TestShell.
8 8
9 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 9 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
10 #define WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 10 #define WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 double interval, double fire_time); 193 double interval, double fire_time);
194 virtual void didCancelClientRedirect(WebKit::WebFrame*); 194 virtual void didCancelClientRedirect(WebKit::WebFrame*);
195 virtual void didCreateDataSource( 195 virtual void didCreateDataSource(
196 WebKit::WebFrame*, WebKit::WebDataSource*); 196 WebKit::WebFrame*, WebKit::WebDataSource*);
197 virtual void didStartProvisionalLoad(WebKit::WebFrame*); 197 virtual void didStartProvisionalLoad(WebKit::WebFrame*);
198 virtual void didReceiveServerRedirectForProvisionalLoad(WebKit::WebFrame*); 198 virtual void didReceiveServerRedirectForProvisionalLoad(WebKit::WebFrame*);
199 virtual void didFailProvisionalLoad( 199 virtual void didFailProvisionalLoad(
200 WebKit::WebFrame*, const WebKit::WebURLError&); 200 WebKit::WebFrame*, const WebKit::WebURLError&);
201 virtual void didCommitProvisionalLoad( 201 virtual void didCommitProvisionalLoad(
202 WebKit::WebFrame*, bool is_new_navigation); 202 WebKit::WebFrame*, bool is_new_navigation);
203 virtual void didClearWindowObject(WebKit::WebFrame*);
204 virtual void didReceiveTitle( 203 virtual void didReceiveTitle(
205 WebKit::WebFrame*, const WebKit::WebString& title, 204 WebKit::WebFrame*, const WebKit::WebString& title,
206 WebKit::WebTextDirection direction); 205 WebKit::WebTextDirection direction);
207 virtual void didFinishDocumentLoad(WebKit::WebFrame*); 206 virtual void didFinishDocumentLoad(WebKit::WebFrame*);
208 virtual void didHandleOnloadEvents(WebKit::WebFrame*); 207 virtual void didHandleOnloadEvents(WebKit::WebFrame*);
209 virtual void didFailLoad( 208 virtual void didFailLoad(
210 WebKit::WebFrame*, const WebKit::WebURLError&); 209 WebKit::WebFrame*, const WebKit::WebURLError&);
211 virtual void didFinishLoad(WebKit::WebFrame*); 210 virtual void didFinishLoad(WebKit::WebFrame*);
212 virtual void didNavigateWithinPage( 211 virtual void didNavigateWithinPage(
213 WebKit::WebFrame*, bool is_new_navigation); 212 WebKit::WebFrame*, bool is_new_navigation);
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 std::string edit_command_name_; 439 std::string edit_command_name_;
441 std::string edit_command_value_; 440 std::string edit_command_value_;
442 441
443 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). 442 // The mock spellchecker used in TestWebViewDelegate::spellCheck().
444 MockSpellCheck mock_spellcheck_; 443 MockSpellCheck mock_spellcheck_;
445 444
446 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); 445 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate);
447 }; 446 };
448 447
449 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 448 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_test.cc ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698