summaryrefslogtreecommitdiffstats
path: root/content/common/pepper_plugin_registry.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/pepper_plugin_registry.cc')
-rw-r--r--content/common/pepper_plugin_registry.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/content/common/pepper_plugin_registry.cc b/content/common/pepper_plugin_registry.cc
index c8b1c78..0d2a93c 100644
--- a/content/common/pepper_plugin_registry.cc
+++ b/content/common/pepper_plugin_registry.cc
@@ -232,5 +232,19 @@ base::WaitableEvent* PepperPluginRegistry::GetShutdownEvent() {
std::set<PP_Instance>* PepperPluginRegistry::GetGloballySeenInstanceIDSet() {
// This function is not needed on the host side of the proxy.
+ NOTREACHED();
return NULL;
}
+
+pp::shared_impl::WebKitForwarding* PepperPluginRegistry::GetWebKitForwarding() {
+ // This function is not needed on the host side of the proxy.
+ NOTREACHED();
+ return NULL;
+}
+
+void PepperPluginRegistry::PostToWebKitThread(
+ const tracked_objects::Location& from_here,
+ const base::Closure& task) {
+ // This function is not needed on the host side of the proxy.
+ NOTREACHED();
+}