Index: content/renderer/webplugin_delegate_proxy.cc |
diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc |
index b6ff54348395933d82a9b88cf1e7e5cbd2e50f52..4764ba8f52aa59f13435e436e09e1e08c205d85d 100644 |
--- a/content/renderer/webplugin_delegate_proxy.cc |
+++ b/content/renderer/webplugin_delegate_proxy.cc |
@@ -62,7 +62,7 @@ |
#endif |
#if defined(OS_WIN) |
-#include "content/common/sandbox_policy.h" |
+#include "content/public/common/sandbox_init.h" |
#endif |
using WebKit::WebBindings; |
@@ -503,7 +503,7 @@ static void CopyTransportDIBHandleForMessage( |
#elif defined(OS_WIN) |
// On Windows we need to duplicate the handle for the plugin process. |
*handle_out = NULL; |
- sandbox::BrokerDuplicateHandle(handle_in, peer_pid, handle_out, |
+ content::BrokerDuplicateHandle(handle_in, peer_pid, handle_out, |
FILE_MAP_READ | FILE_MAP_WRITE, 0); |
CHECK(*handle_out != NULL); |
#else |