| Index: content/renderer/pepper_helper.cc | 
| =================================================================== | 
| --- content/renderer/pepper_helper.cc	(revision 214354) | 
| +++ content/renderer/pepper_helper.cc	(working copy) | 
| @@ -2,48 +2,47 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| -#include "content/renderer/render_view_pepper_helper.h" | 
| +#include "content/renderer/pepper_helper.h" | 
|  | 
| #include "ui/gfx/rect.h" | 
|  | 
| namespace content { | 
|  | 
| -RenderViewPepperHelper::~RenderViewPepperHelper() { | 
| +PepperHelper::~PepperHelper() { | 
| } | 
|  | 
| -WebKit::WebPlugin* RenderViewPepperHelper::CreatePepperWebPlugin( | 
| +WebKit::WebPlugin* PepperHelper::CreatePepperWebPlugin( | 
| const WebPluginInfo& webplugin_info, | 
| const WebKit::WebPluginParams& params) { | 
| return NULL; | 
| } | 
|  | 
| -PepperPluginInstanceImpl* | 
| -    RenderViewPepperHelper::GetBitmapForOptimizedPluginPaint( | 
| -        const gfx::Rect& paint_bounds, | 
| -        TransportDIB** dib, | 
| -        gfx::Rect* location, | 
| -        gfx::Rect* clip, | 
| -        float* scale_factor) { | 
| +PepperPluginInstanceImpl* PepperHelper::GetBitmapForOptimizedPluginPaint( | 
| +    const gfx::Rect& paint_bounds, | 
| +    TransportDIB** dib, | 
| +    gfx::Rect* location, | 
| +    gfx::Rect* clip, | 
| +    float* scale_factor) { | 
| return NULL; | 
| } | 
|  | 
| -bool RenderViewPepperHelper::IsPluginFocused() const { | 
| +bool PepperHelper::IsPluginFocused() const { | 
| return false; | 
| } | 
|  | 
| -gfx::Rect RenderViewPepperHelper::GetCaretBounds() const { | 
| +gfx::Rect PepperHelper::GetCaretBounds() const { | 
| return gfx::Rect(0, 0, 0, 0); | 
| } | 
|  | 
| -ui::TextInputType RenderViewPepperHelper::GetTextInputType() const { | 
| +ui::TextInputType PepperHelper::GetTextInputType() const { | 
| return ui::TEXT_INPUT_TYPE_NONE; | 
| } | 
|  | 
| -bool RenderViewPepperHelper::IsPluginAcceptingCompositionEvents() const { | 
| +bool PepperHelper::IsPluginAcceptingCompositionEvents() const { | 
| return false; | 
| } | 
|  | 
| -bool RenderViewPepperHelper::CanComposeInline() const { | 
| +bool PepperHelper::CanComposeInline() const { | 
| return false; | 
| } | 
|  | 
|  |