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

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 11468033: Vanquish the remnants of media::MessageLoopFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment Created 7 years, 11 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 #include "content/public/renderer/content_renderer_client.h" 5 #include "content/public/renderer/content_renderer_client.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { 9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() {
10 return NULL; 10 return NULL;
(...skipping 20 matching lines...) Expand all
31 const FilePath& plugin_path) { 31 const FilePath& plugin_path) {
32 return NULL; 32 return NULL;
33 } 33 }
34 34
35 bool ContentRendererClient::HasErrorPage(int http_status_code, 35 bool ContentRendererClient::HasErrorPage(int http_status_code,
36 std::string* error_domain) { 36 std::string* error_domain) {
37 return false; 37 return false;
38 } 38 }
39 39
40 webkit_media::WebMediaPlayerImpl* 40 webkit_media::WebMediaPlayerImpl*
41 ContentRendererClient::OverrideCreateWebMediaPlayer( 41 ContentRendererClient::OverrideCreateWebMediaPlayer(
42 RenderView* render_view, 42 RenderView* render_view,
43 WebKit::WebFrame* frame, 43 WebKit::WebFrame* frame,
44 WebKit::WebMediaPlayerClient* client, 44 WebKit::WebMediaPlayerClient* client,
45 base::WeakPtr<webkit_media::WebMediaPlayerDelegate> delegate, 45 base::WeakPtr<webkit_media::WebMediaPlayerDelegate> delegate,
46 media::FilterCollection* collection, 46 const webkit_media::WebMediaPlayerParams& params) {
47 WebKit::WebAudioSourceProvider* audio_source_provider,
48 media::AudioRendererSink* audio_renderer_sink,
49 media::MessageLoopFactory* message_loop_factory,
50 webkit_media::MediaStreamClient* media_stream_client,
51 media::MediaLog* media_log) {
52 return NULL; 47 return NULL;
53 } 48 }
54 49
55 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() { 50 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() {
56 return true; 51 return true;
57 } 52 }
58 53
59 bool ContentRendererClient::AllowPopup() { 54 bool ContentRendererClient::AllowPopup() {
60 return false; 55 return false;
61 } 56 }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 109
115 bool ContentRendererClient::HandleSetCookieRequest( 110 bool ContentRendererClient::HandleSetCookieRequest(
116 RenderView* sender, 111 RenderView* sender,
117 const GURL& url, 112 const GURL& url,
118 const GURL& first_party_for_cookies, 113 const GURL& first_party_for_cookies,
119 const std::string& value) { 114 const std::string& value) {
120 return false; 115 return false;
121 } 116 }
122 117
123 } // namespace content 118 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/media/renderer_gpu_video_decoder_factories.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698