| Index: content/worker/worker_webkitplatformsupport_impl.cc
|
| diff --git a/content/worker/worker_webkitplatformsupport_impl.cc b/content/worker/worker_webkitplatformsupport_impl.cc
|
| index a83cd34f4bec179810226c508ec2d3e7a6446a45..553f6770a2ee8385e2d738a1d94ae67f3bf89e0b 100644
|
| --- a/content/worker/worker_webkitplatformsupport_impl.cc
|
| +++ b/content/worker/worker_webkitplatformsupport_impl.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/message_loop/message_loop_proxy.h"
|
| #include "base/platform_file.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| +#include "content/child/blink_glue.h"
|
| #include "content/child/database_util.h"
|
| #include "content/child/fileapi/webfilesystem_impl.h"
|
| #include "content/child/indexed_db/webidbfactory_impl.h"
|
| @@ -17,6 +18,7 @@
|
| #include "content/child/thread_safe_sender.h"
|
| #include "content/child/web_database_observer_impl.h"
|
| #include "content/child/webblobregistry_impl.h"
|
| +#include "content/child/webfileutilities_impl.h"
|
| #include "content/child/webmessageportchannel_impl.h"
|
| #include "content/common/file_utilities_messages.h"
|
| #include "content/common/mime_registry_messages.h"
|
| @@ -28,8 +30,6 @@
|
| #include "third_party/WebKit/public/platform/WebString.h"
|
| #include "third_party/WebKit/public/platform/WebURL.h"
|
| #include "webkit/common/quota/quota_types.h"
|
| -#include "webkit/glue/webfileutilities_impl.h"
|
| -#include "webkit/glue/webkit_glue.h"
|
|
|
| using blink::Platform;
|
| using blink::WebBlobRegistry;
|
| @@ -49,7 +49,7 @@ namespace content {
|
| // TODO(kinuko): Probably this could be consolidated into
|
| // RendererWebKitPlatformSupportImpl::FileUtilities.
|
| class WorkerWebKitPlatformSupportImpl::FileUtilities
|
| - : public webkit_glue::WebFileUtilitiesImpl {
|
| + : public WebFileUtilitiesImpl {
|
| public:
|
| explicit FileUtilities(ThreadSafeSender* sender)
|
| : thread_safe_sender_(sender) {}
|
| @@ -69,7 +69,7 @@ bool WorkerWebKitPlatformSupportImpl::FileUtilities::getFileInfo(
|
| status != base::File::FILE_OK) {
|
| return false;
|
| }
|
| - webkit_glue::FileInfoToWebFileInfo(file_info, &web_file_info);
|
| + FileInfoToWebFileInfo(file_info, &web_file_info);
|
| web_file_info.platformPath = path;
|
| return true;
|
| }
|
|
|