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

Side by Side Diff: content/renderer/mock_content_renderer_client.cc

Issue 8095007: Defer loading of audio/video tags while prerendering. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Retrying upload for commit. Created 9 years 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) 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 #include "content/renderer/mock_content_renderer_client.h" 5 #include "content/renderer/mock_content_renderer_client.h"
6 6
7 #include <string> 7 #include <string>
8 #include "v8/include/v8.h" 8 #include "v8/include/v8.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 24 matching lines...) Expand all
35 const WebKit::WebPluginParams& params, 35 const WebKit::WebPluginParams& params,
36 WebKit::WebPlugin** plugin) { 36 WebKit::WebPlugin** plugin) {
37 return false; 37 return false;
38 } 38 }
39 39
40 bool MockContentRendererClient::HasErrorPage(int http_status_code, 40 bool MockContentRendererClient::HasErrorPage(int http_status_code,
41 std::string* error_domain) { 41 std::string* error_domain) {
42 return false; 42 return false;
43 } 43 }
44 44
45 bool MockContentRendererClient::ShouldOverrideCreateWebMediaPlayer(
46 RenderView* view) {
47 return false;
48 }
49
50 void MockContentRendererClient::OverrideCreateWebMediaPlayer(
51 RenderView* render_view,
52 WebKit::WebMediaPlayerClient* client,
53 base::WeakPtr<webkit_media::WebMediaPlayerDelegate> delegate,
54 media::FilterCollection* collection,
55 media::MessageLoopFactory* message_loop_factory,
56 webkit_media::MediaStreamClient* media_stream_client,
57 media::MediaLog* media_log,
58 webkit_media::WebMediaPlayerImpl** player) {
59 }
60
45 void MockContentRendererClient::GetNavigationErrorStrings( 61 void MockContentRendererClient::GetNavigationErrorStrings(
46 const WebKit::WebURLRequest& failed_request, 62 const WebKit::WebURLRequest& failed_request,
47 const WebKit::WebURLError& error, 63 const WebKit::WebURLError& error,
48 std::string* error_html, 64 std::string* error_html,
49 string16* error_description) { 65 string16* error_description) {
50 } 66 }
51 67
52 bool MockContentRendererClient::RunIdleHandlerWhenWidgetsHidden() { 68 bool MockContentRendererClient::RunIdleHandlerWhenWidgetsHidden() {
53 return true; 69 return true;
54 } 70 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 const GURL& first_party_for_cookies, 132 const GURL& first_party_for_cookies,
117 const std::string& value) { 133 const std::string& value) {
118 return false; 134 return false;
119 } 135 }
120 136
121 void MockContentRendererClient::RegisterPPAPIInterfaceFactories( 137 void MockContentRendererClient::RegisterPPAPIInterfaceFactories(
122 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) { 138 webkit::ppapi::PpapiInterfaceFactoryManager* factory_manager) {
123 } 139 }
124 140
125 } // namespace content 141 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698