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

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

Issue 19894003: Move webplugininfo.h to content/public. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 | 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/renderer/render_view_pepper_helper.h" 5 #include "content/renderer/render_view_pepper_helper.h"
6 6
7 #include "ui/gfx/rect.h" 7 #include "ui/gfx/rect.h"
8 8
9 namespace content { 9 namespace content {
10 10
11 RenderViewPepperHelper::~RenderViewPepperHelper() { 11 RenderViewPepperHelper::~RenderViewPepperHelper() {
12 } 12 }
13 13
14 WebKit::WebPlugin* RenderViewPepperHelper::CreatePepperWebPlugin( 14 WebKit::WebPlugin* RenderViewPepperHelper::CreatePepperWebPlugin(
15 const webkit::WebPluginInfo& webplugin_info, 15 const WebPluginInfo& webplugin_info,
16 const WebKit::WebPluginParams& params) { 16 const WebKit::WebPluginParams& params) {
17 return NULL; 17 return NULL;
18 } 18 }
19 19
20 webkit::ppapi::PluginInstance* 20 webkit::ppapi::PluginInstance*
21 RenderViewPepperHelper::GetBitmapForOptimizedPluginPaint( 21 RenderViewPepperHelper::GetBitmapForOptimizedPluginPaint(
22 const gfx::Rect& paint_bounds, 22 const gfx::Rect& paint_bounds,
23 TransportDIB** dib, 23 TransportDIB** dib,
24 gfx::Rect* location, 24 gfx::Rect* location,
25 gfx::Rect* clip, 25 gfx::Rect* clip,
(...skipping 15 matching lines...) Expand all
41 41
42 bool RenderViewPepperHelper::IsPluginAcceptingCompositionEvents() const { 42 bool RenderViewPepperHelper::IsPluginAcceptingCompositionEvents() const {
43 return false; 43 return false;
44 } 44 }
45 45
46 bool RenderViewPepperHelper::CanComposeInline() const { 46 bool RenderViewPepperHelper::CanComposeInline() const {
47 return false; 47 return false;
48 } 48 }
49 49
50 } // namespace content 50 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698