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

Unified Diff: content/renderer/pepper_helper.cc

Issue 20987009: Rename PepperPluginDelegateImpl to PepperHelperImpl after getting rid of the PluginDelegate interfa… (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper_helper.h ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « content/renderer/pepper_helper.h ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698