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

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

Issue 6883051: Update Chrome to accept WebKit API for RTL titles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comma Created 9 years, 8 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
« no previous file with comments | « content/renderer/render_view.cc ('k') | webkit/tools/test_shell/test_webview_delegate.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 virtual void didCreateDataSource( 194 virtual void didCreateDataSource(
195 WebKit::WebFrame*, WebKit::WebDataSource*); 195 WebKit::WebFrame*, WebKit::WebDataSource*);
196 virtual void didStartProvisionalLoad(WebKit::WebFrame*); 196 virtual void didStartProvisionalLoad(WebKit::WebFrame*);
197 virtual void didReceiveServerRedirectForProvisionalLoad(WebKit::WebFrame*); 197 virtual void didReceiveServerRedirectForProvisionalLoad(WebKit::WebFrame*);
198 virtual void didFailProvisionalLoad( 198 virtual void didFailProvisionalLoad(
199 WebKit::WebFrame*, const WebKit::WebURLError&); 199 WebKit::WebFrame*, const WebKit::WebURLError&);
200 virtual void didCommitProvisionalLoad( 200 virtual void didCommitProvisionalLoad(
201 WebKit::WebFrame*, bool is_new_navigation); 201 WebKit::WebFrame*, bool is_new_navigation);
202 virtual void didClearWindowObject(WebKit::WebFrame*); 202 virtual void didClearWindowObject(WebKit::WebFrame*);
203 virtual void didReceiveTitle( 203 virtual void didReceiveTitle(
204 WebKit::WebFrame*, const WebKit::WebString& title); 204 WebKit::WebFrame*, const WebKit::WebString& title,
205 WebKit::WebTextDirection direction);
205 virtual void didFinishDocumentLoad(WebKit::WebFrame*); 206 virtual void didFinishDocumentLoad(WebKit::WebFrame*);
206 virtual void didHandleOnloadEvents(WebKit::WebFrame*); 207 virtual void didHandleOnloadEvents(WebKit::WebFrame*);
207 virtual void didFailLoad( 208 virtual void didFailLoad(
208 WebKit::WebFrame*, const WebKit::WebURLError&); 209 WebKit::WebFrame*, const WebKit::WebURLError&);
209 virtual void didFinishLoad(WebKit::WebFrame*); 210 virtual void didFinishLoad(WebKit::WebFrame*);
210 virtual void didNavigateWithinPage( 211 virtual void didNavigateWithinPage(
211 WebKit::WebFrame*, bool is_new_navigation); 212 WebKit::WebFrame*, bool is_new_navigation);
212 virtual void didChangeLocationWithinPage( 213 virtual void didChangeLocationWithinPage(
213 WebKit::WebFrame*); 214 WebKit::WebFrame*);
214 virtual void assignIdentifierToRequest( 215 virtual void assignIdentifierToRequest(
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 std::string edit_command_name_; 445 std::string edit_command_name_;
445 std::string edit_command_value_; 446 std::string edit_command_value_;
446 447
447 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). 448 // The mock spellchecker used in TestWebViewDelegate::spellCheck().
448 MockSpellCheck mock_spellcheck_; 449 MockSpellCheck mock_spellcheck_;
449 450
450 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); 451 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate);
451 }; 452 };
452 453
453 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 454 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view.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