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

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

Issue 10873064: remove old createMediaPlayer which doesn't have URL as argument. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 3 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 | « webkit/support/webkit_support.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) 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 virtual void setWindowRect(const WebKit::WebRect& rect); 158 virtual void setWindowRect(const WebKit::WebRect& rect);
159 virtual WebKit::WebRect rootWindowRect(); 159 virtual WebKit::WebRect rootWindowRect();
160 virtual WebKit::WebRect windowResizerRect(); 160 virtual WebKit::WebRect windowResizerRect();
161 virtual WebKit::WebScreenInfo screenInfo(); 161 virtual WebKit::WebScreenInfo screenInfo();
162 162
163 // WebKit::WebFrameClient 163 // WebKit::WebFrameClient
164 virtual WebKit::WebPlugin* createPlugin( 164 virtual WebKit::WebPlugin* createPlugin(
165 WebKit::WebFrame*, const WebKit::WebPluginParams&); 165 WebKit::WebFrame*, const WebKit::WebPluginParams&);
166 virtual WebKit::WebMediaPlayer* createMediaPlayer( 166 virtual WebKit::WebMediaPlayer* createMediaPlayer(
167 WebKit::WebFrame*, const WebKit::WebURL&, WebKit::WebMediaPlayerClient*); 167 WebKit::WebFrame*, const WebKit::WebURL&, WebKit::WebMediaPlayerClient*);
168 virtual WebKit::WebMediaPlayer* createMediaPlayer(
169 WebKit::WebFrame*, WebKit::WebMediaPlayerClient*);
170 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 168 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
171 WebKit::WebFrame*, WebKit::WebApplicationCacheHostClient*); 169 WebKit::WebFrame*, WebKit::WebApplicationCacheHostClient*);
172 virtual bool allowPlugins(WebKit::WebFrame* frame, bool enabled_per_settings); 170 virtual bool allowPlugins(WebKit::WebFrame* frame, bool enabled_per_settings);
173 virtual bool allowImage(WebKit::WebFrame* frame, 171 virtual bool allowImage(WebKit::WebFrame* frame,
174 bool enabled_per_settings, 172 bool enabled_per_settings,
175 const WebKit::WebURL& image_url); 173 const WebKit::WebURL& image_url);
176 virtual void loadURLExternally( 174 virtual void loadURLExternally(
177 WebKit::WebFrame*, const WebKit::WebURLRequest&, 175 WebKit::WebFrame*, const WebKit::WebURLRequest&,
178 WebKit::WebNavigationPolicy); 176 WebKit::WebNavigationPolicy);
179 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( 177 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation(
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 std::string edit_command_name_; 437 std::string edit_command_name_;
440 std::string edit_command_value_; 438 std::string edit_command_value_;
441 439
442 // The mock spellchecker used in TestWebViewDelegate::spellCheck(). 440 // The mock spellchecker used in TestWebViewDelegate::spellCheck().
443 MockSpellCheck mock_spellcheck_; 441 MockSpellCheck mock_spellcheck_;
444 442
445 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); 443 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate);
446 }; 444 };
447 445
448 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 446 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « webkit/support/webkit_support.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