Index: content/child/npapi/plugin_host.cc |
diff --git a/content/child/npapi/plugin_host.cc b/content/child/npapi/plugin_host.cc |
index 814964fd7ffce48088e79dc6665ddc8cc67ce044..22fe6d011d394b20f59b34b2873ff6695f37aa40 100644 |
--- a/content/child/npapi/plugin_host.cc |
+++ b/content/child/npapi/plugin_host.cc |
@@ -31,7 +31,7 @@ |
#include "base/mac/mac_util.h" |
#endif |
-using WebKit::WebBindings; |
+using blink::WebBindings; |
// Declarations for stub implementations of deprecated functions, which are no |
// longer listed in npapi.h. |
@@ -331,7 +331,7 @@ uint32_t NPN_MemFlush(uint32_t size) { |
// This is for dynamic discovery of new plugins. |
// Should force a re-scan of the plugins directory to load new ones. |
void NPN_ReloadPlugins(NPBool reload_pages) { |
- WebKit::resetPluginCache(reload_pages ? true : false); |
+ blink::resetPluginCache(reload_pages ? true : false); |
} |
// Requests a range of bytes for a seekable stream. |