Index: content/browser/renderer_host/render_sandbox_host_linux.cc |
diff --git a/content/browser/renderer_host/render_sandbox_host_linux.cc b/content/browser/renderer_host/render_sandbox_host_linux.cc |
index 0ce5d884229326b01ed6830ccd99c0187ef0f2f7..c1c98f73caed705a9511058c4bac5a425f266b81 100644 |
--- a/content/browser/renderer_host/render_sandbox_host_linux.cc |
+++ b/content/browser/renderer_host/render_sandbox_host_linux.cc |
@@ -26,6 +26,7 @@ |
#include "base/shared_memory.h" |
#include "base/string_number_conversions.h" |
#include "base/string_util.h" |
+#include "content/common/content_webkitplatformsupport_impl.h" |
#include "content/common/font_config_ipc_linux.h" |
#include "content/common/sandbox_methods_linux.h" |
#include "content/common/unix_domain_socket_posix.h" |
@@ -33,7 +34,6 @@ |
#include "third_party/npapi/bindings/npapi_extensions.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/linux/WebFontInfo.h" |
-#include "webkit/glue/webkitplatformsupport_impl.h" |
using WebKit::WebCString; |
using WebKit::WebFontInfo; |
@@ -645,7 +645,7 @@ class SandboxIPCProcess { |
const int browser_socket_; |
FontConfigDirect* const font_config_; |
std::vector<std::string> sandbox_cmd_; |
- scoped_ptr<webkit_glue::WebKitPlatformSupportImpl> webkit_platform_support_; |
+ scoped_ptr<ContentWebKitPlatformSupportImpl> webkit_platform_support_; |
}; |
SandboxIPCProcess::~SandboxIPCProcess() { |
@@ -656,7 +656,7 @@ SandboxIPCProcess::~SandboxIPCProcess() { |
void SandboxIPCProcess::EnsureWebKitInitialized() { |
if (webkit_platform_support_.get()) |
return; |
- webkit_platform_support_.reset(new webkit_glue::WebKitPlatformSupportImpl); |
+ webkit_platform_support_.reset(new ContentWebKitPlatformSupportImpl); |
WebKit::initialize(webkit_platform_support_.get()); |
} |