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

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

Issue 1036003: Add chromium-side support for history.{push,replace}State. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 virtual void didCommitProvisionalLoad( 183 virtual void didCommitProvisionalLoad(
184 WebKit::WebFrame*, bool is_new_navigation); 184 WebKit::WebFrame*, bool is_new_navigation);
185 virtual void didClearWindowObject(WebKit::WebFrame*); 185 virtual void didClearWindowObject(WebKit::WebFrame*);
186 virtual void didReceiveTitle( 186 virtual void didReceiveTitle(
187 WebKit::WebFrame*, const WebKit::WebString& title); 187 WebKit::WebFrame*, const WebKit::WebString& title);
188 virtual void didFinishDocumentLoad(WebKit::WebFrame*); 188 virtual void didFinishDocumentLoad(WebKit::WebFrame*);
189 virtual void didHandleOnloadEvents(WebKit::WebFrame*); 189 virtual void didHandleOnloadEvents(WebKit::WebFrame*);
190 virtual void didFailLoad( 190 virtual void didFailLoad(
191 WebKit::WebFrame*, const WebKit::WebURLError&); 191 WebKit::WebFrame*, const WebKit::WebURLError&);
192 virtual void didFinishLoad(WebKit::WebFrame*); 192 virtual void didFinishLoad(WebKit::WebFrame*);
193 virtual void didNavigateWithinPage(
194 WebKit::WebFrame*, bool is_new_navigation);
193 virtual void didChangeLocationWithinPage( 195 virtual void didChangeLocationWithinPage(
194 WebKit::WebFrame*, bool isNewNavigation); 196 WebKit::WebFrame*);
195 virtual void assignIdentifierToRequest( 197 virtual void assignIdentifierToRequest(
196 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLRequest&); 198 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLRequest&);
197 virtual void willSendRequest( 199 virtual void willSendRequest(
198 WebKit::WebFrame*, unsigned identifier, WebKit::WebURLRequest&, 200 WebKit::WebFrame*, unsigned identifier, WebKit::WebURLRequest&,
199 const WebKit::WebURLResponse& redirectResponse); 201 const WebKit::WebURLResponse& redirectResponse);
200 virtual void didReceiveResponse( 202 virtual void didReceiveResponse(
201 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLResponse&); 203 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLResponse&);
202 virtual void didFinishResourceLoad( 204 virtual void didFinishResourceLoad(
203 WebKit::WebFrame*, unsigned identifier); 205 WebKit::WebFrame*, unsigned identifier);
204 virtual void didFailResourceLoad( 206 virtual void didFailResourceLoad(
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 std::string edit_command_name_; 415 std::string edit_command_name_;
414 std::string edit_command_value_; 416 std::string edit_command_value_;
415 417
416 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). 418 // The mock spellchecker used in TestWebViewDelegate::spellCheck().
417 MockSpellCheck mock_spellcheck_; 419 MockSpellCheck mock_spellcheck_;
418 420
419 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); 421 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate);
420 }; 422 };
421 423
422 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 424 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_webkit_init.h ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698