| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/worker/worker_webkitplatformsupport_impl.h" | 5 #include "content/worker/worker_webkitplatformsupport_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/platform_file.h" | 8 #include "base/platform_file.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "content/common/database_util.h" | 10 #include "content/common/database_util.h" |
| 11 #include "content/common/fileapi/webblobregistry_impl.h" | 11 #include "content/common/fileapi/webblobregistry_impl.h" |
| 12 #include "content/common/fileapi/webfilesystem_impl.h" | 12 #include "content/common/fileapi/webfilesystem_impl.h" |
| 13 #include "content/common/file_utilities_messages.h" | 13 #include "content/common/file_utilities_messages.h" |
| 14 #include "content/common/indexed_db/proxy_webidbfactory_impl.h" | 14 #include "content/common/indexed_db/proxy_webidbfactory_impl.h" |
| 15 #include "content/common/mime_registry_messages.h" | 15 #include "content/common/mime_registry_messages.h" |
| 16 #include "content/common/webmessageportchannel_impl.h" | 16 #include "content/common/webmessageportchannel_impl.h" |
| 17 #include "content/worker/worker_thread.h" | 17 #include "content/worker/worker_thread.h" |
| 18 #include "ipc/ipc_sync_message_filter.h" | 18 #include "ipc/ipc_sync_message_filter.h" |
| 19 #include "net/base/mime_util.h" | 19 #include "net/base/mime_util.h" |
| 20 #include "third_party/WebKit/Source/Platform/chromium/public/WebBlobRegistry.h" |
| 21 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
| 22 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" |
| 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileInfo.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileInfo.h" |
| 21 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebBlobRegis
try.h" | |
| 22 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | |
| 23 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" | |
| 24 #include "webkit/base/file_path_string_conversions.h" | 24 #include "webkit/base/file_path_string_conversions.h" |
| 25 #include "webkit/glue/webfileutilities_impl.h" | 25 #include "webkit/glue/webfileutilities_impl.h" |
| 26 #include "webkit/glue/webkit_glue.h" | 26 #include "webkit/glue/webkit_glue.h" |
| 27 | 27 |
| 28 using WebKit::WebBlobRegistry; | 28 using WebKit::WebBlobRegistry; |
| 29 using WebKit::WebClipboard; | 29 using WebKit::WebClipboard; |
| 30 using WebKit::WebFileInfo; | 30 using WebKit::WebFileInfo; |
| 31 using WebKit::WebFileSystem; | 31 using WebKit::WebFileSystem; |
| 32 using WebKit::WebFileUtilities; | 32 using WebKit::WebFileUtilities; |
| 33 using WebKit::WebKitPlatformSupport; | 33 using WebKit::WebKitPlatformSupport; |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 return webkit_base::FilePathStringToWebString(file_extension); | 276 return webkit_base::FilePathStringToWebString(file_extension); |
| 277 } | 277 } |
| 278 | 278 |
| 279 WebBlobRegistry* WorkerWebKitPlatformSupportImpl::blobRegistry() { | 279 WebBlobRegistry* WorkerWebKitPlatformSupportImpl::blobRegistry() { |
| 280 if (!blob_registry_.get()) | 280 if (!blob_registry_.get()) |
| 281 blob_registry_.reset(new WebBlobRegistryImpl(WorkerThread::current())); | 281 blob_registry_.reset(new WebBlobRegistryImpl(WorkerThread::current())); |
| 282 return blob_registry_.get(); | 282 return blob_registry_.get(); |
| 283 } | 283 } |
| 284 | 284 |
| 285 } // namespace content | 285 } // namespace content |
| OLD | NEW |