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

Unified Diff: content/renderer/pepper/pepper_broker.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/content_renderer.gypi ('k') | content/renderer/pepper/pepper_broker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_broker.h
===================================================================
--- content/renderer/pepper/pepper_broker.h (revision 214411)
+++ content/renderer/pepper/pepper_broker.h (working copy)
@@ -24,7 +24,7 @@
namespace content {
-class PepperPluginDelegateImpl;
+class PepperHelperImpl;
class PluginModule;
// This object is NOT thread-safe.
@@ -46,8 +46,7 @@
class PepperBroker : public base::RefCountedThreadSafe<PepperBroker>{
public:
- PepperBroker(PluginModule* plugin_module,
- PepperPluginDelegateImpl* delegate_);
+ PepperBroker(PluginModule* plugin_module, PepperHelperImpl* helper);
// Decrements the references to the broker.
// When there are no more references, this renderer's dispatcher is
@@ -98,7 +97,7 @@
// Always set and cleared at the same time as the module's pointer to this.
PluginModule* plugin_module_;
- base::WeakPtr<PepperPluginDelegateImpl> delegate_;
+ base::WeakPtr<PepperHelperImpl> helper_;
DISALLOW_COPY_AND_ASSIGN(PepperBroker);
};
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/pepper/pepper_broker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698