Index: content/renderer/pepper_plugin_delegate_impl.h |
diff --git a/content/renderer/pepper_plugin_delegate_impl.h b/content/renderer/pepper_plugin_delegate_impl.h |
index 84ec4b7ec6ef0833f99bc3e5cf61fd2b50ebfeb1..9380ec79bafee2b54884b8c4d81cd72b8f12a0ab 100644 |
--- a/content/renderer/pepper_plugin_delegate_impl.h |
+++ b/content/renderer/pepper_plugin_delegate_impl.h |
@@ -262,7 +262,6 @@ class PepperPluginDelegateImpl |
virtual bool ReadDirectory( |
const GURL& directory_path, |
fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
- virtual void PublishPolicy(const std::string& policy_json) OVERRIDE; |
virtual void QueryAvailableSpace( |
const GURL& origin, |
quota::StorageType type, |
@@ -324,8 +323,6 @@ class PepperPluginDelegateImpl |
virtual std::string GetDefaultEncoding() OVERRIDE; |
virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) |
OVERRIDE; |
- virtual void SubscribeToPolicyUpdates( |
- webkit::ppapi::PluginInstance* instance) OVERRIDE; |
virtual std::string ResolveProxy(const GURL& url) OVERRIDE; |
virtual void DidStartLoading() OVERRIDE; |
virtual void DidStopLoading() OVERRIDE; |
@@ -348,10 +345,6 @@ class PepperPluginDelegateImpl |
CONTENT_EXPORT int GetRoutingId() const; |
private: |
- void PublishInitialPolicy( |
- scoped_refptr<webkit::ppapi::PluginInstance> instance, |
- const std::string& policy); |
- |
// Asynchronously attempts to create a PPAPI broker for the given plugin. |
scoped_refptr<PpapiBrokerImpl> CreatePpapiBroker( |
webkit::ppapi::PluginModule* plugin_module); |
@@ -390,10 +383,6 @@ class PepperPluginDelegateImpl |
// progress. |
string16 composition_text_; |
- // Set of instances to receive a notification when the enterprise policy has |
- // been updated. |
- std::set<webkit::ppapi::PluginInstance*> subscribed_to_policy_updates_; |
- |
// |mouse_lock_owner_| is not owned by this class. We can know about when it |
// is destroyed via InstanceDeleted(). |
// |mouse_lock_owner_| being non-NULL doesn't indicate that currently the |