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

Unified Diff: content/renderer/pepper/pepper_helper_impl.h

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/pepper_file_io_host.cc ('k') | content/renderer/pepper/pepper_helper_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_helper_impl.h
===================================================================
--- content/renderer/pepper/pepper_helper_impl.h (revision 214411)
+++ content/renderer/pepper/pepper_helper_impl.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
-#define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
+#ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_H_
+#define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_H_
#include <map>
#include <set>
@@ -18,7 +18,7 @@
#include "base/observer_list.h"
#include "content/public/renderer/render_view_observer.h"
#include "content/renderer/pepper/pepper_browser_connection.h"
-#include "content/renderer/render_view_pepper_helper.h"
+#include "content/renderer/pepper_helper.h"
#include "ipc/ipc_platform_file.h"
#include "ppapi/c/pp_file_info.h"
#include "ppapi/c/ppb_tcp_socket.h"
@@ -57,13 +57,12 @@
class RenderViewImpl;
struct WebPluginInfo;
-class PepperPluginDelegateImpl
- : public RenderViewPepperHelper,
- public base::SupportsWeakPtr<PepperPluginDelegateImpl>,
- public RenderViewObserver {
+class PepperHelperImpl : public PepperHelper,
+ public base::SupportsWeakPtr<PepperHelperImpl>,
+ public RenderViewObserver {
public:
- explicit PepperPluginDelegateImpl(RenderViewImpl* render_view);
- virtual ~PepperPluginDelegateImpl();
+ explicit PepperHelperImpl(RenderViewImpl* render_view);
+ virtual ~PepperHelperImpl();
RenderViewImpl* render_view() { return render_view_; }
@@ -145,7 +144,7 @@
int plugin_child_id);
private:
- // RenderViewPepperHelper implementation.
+ // PepperHelper implementation.
virtual WebKit::WebPlugin* CreatePepperWebPlugin(
const WebPluginInfo& webplugin_info,
const WebKit::WebPluginParams& params) OVERRIDE;
@@ -282,9 +281,9 @@
scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_;
- DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
+ DISALLOW_COPY_AND_ASSIGN(PepperHelperImpl);
};
} // namespace content
-#endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
+#endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_H_
« no previous file with comments | « content/renderer/pepper/pepper_file_io_host.cc ('k') | content/renderer/pepper/pepper_helper_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698