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

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

Issue 376033002: Adding MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pending-zork-patch2
Patch Set: remove some printfs. Created 6 years, 5 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
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;
11 } 11 }
12 12
13 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { 13 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() {
14 return NULL; 14 return NULL;
15 } 15 }
16 16
17 std::string ContentRendererClient::GetDefaultEncoding() { 17 std::string ContentRendererClient::GetDefaultEncoding() {
18 return std::string(); 18 return std::string();
19 } 19 }
20 20
21 bool ContentRendererClient::OverrideCreatePlugin( 21 bool ContentRendererClient::OverrideCreatePlugin(
22 RenderFrame* render_frame, 22 RenderFrame* render_frame,
23 blink::WebLocalFrame* frame, 23 blink::WebLocalFrame* frame,
24 const blink::WebPluginParams& params, 24 const blink::WebPluginParams& params,
25 int* instance_id,
25 blink::WebPlugin** plugin) { 26 blink::WebPlugin** plugin) {
26 return false; 27 return false;
27 } 28 }
28 29
29 blink::WebPlugin* ContentRendererClient::CreatePluginReplacement( 30 blink::WebPlugin* ContentRendererClient::CreatePluginReplacement(
30 RenderFrame* render_frame, 31 RenderFrame* render_frame,
31 const base::FilePath& plugin_path) { 32 const base::FilePath& plugin_path) {
32 return NULL; 33 return NULL;
33 } 34 }
34 35
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 return true; 172 return true;
172 } 173 }
173 174
174 blink::WebWorkerPermissionClientProxy* 175 blink::WebWorkerPermissionClientProxy*
175 ContentRendererClient::CreateWorkerPermissionClientProxy( 176 ContentRendererClient::CreateWorkerPermissionClientProxy(
176 RenderFrame* render_frame, blink::WebFrame* frame) { 177 RenderFrame* render_frame, blink::WebFrame* frame) {
177 return NULL; 178 return NULL;
178 } 179 }
179 180
180 } // namespace content 181 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698