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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 10 matching lines...) Expand all
21 bool ContentRendererClient::OverrideCreatePlugin( 21 bool ContentRendererClient::OverrideCreatePlugin(
22 RenderView* render_view, 22 RenderView* render_view,
23 WebKit::WebFrame* frame, 23 WebKit::WebFrame* frame,
24 const WebKit::WebPluginParams& params, 24 const WebKit::WebPluginParams& params,
25 WebKit::WebPlugin** plugin) { 25 WebKit::WebPlugin** plugin) {
26 return false; 26 return false;
27 } 27 }
28 28
29 WebKit::WebPlugin* ContentRendererClient::CreatePluginReplacement( 29 WebKit::WebPlugin* ContentRendererClient::CreatePluginReplacement(
30 RenderView* render_view, 30 RenderView* render_view,
31 const FilePath& plugin_path) { 31 const base::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(
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 bool ContentRendererClient::HandleSetCookieRequest( 111 bool ContentRendererClient::HandleSetCookieRequest(
112 RenderView* sender, 112 RenderView* sender,
113 const GURL& url, 113 const GURL& url,
114 const GURL& first_party_for_cookies, 114 const GURL& first_party_for_cookies,
115 const std::string& value) { 115 const std::string& value) {
116 return false; 116 return false;
117 } 117 }
118 118
119 } // namespace content 119 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/public/renderer/renderer_ppapi_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698