/external/chromium/chrome/browser/extensions/ |
extension_local_filesystem_apitest.cc | 8 #include "webkit/fileapi/file_system_context.h" 9 #include "webkit/fileapi/file_system_mount_point_provider.h" 10 #include "webkit/fileapi/file_system_path_manager.h" 24 fileapi::FileSystemPathManager* path_manager = 26 fileapi::ExternalFileSystemMountPointProvider* provider =
|
extension_fileapi_apitest.cc | 8 ASSERT_TRUE(RunExtensionTest("fileapi")) << message_;
|
extension_file_browser_private_api.cc | 40 #include "webkit/fileapi/file_system_context.h" 41 #include "webkit/fileapi/file_system_mount_point_provider.h" 42 #include "webkit/fileapi/file_system_operation.h" 43 #include "webkit/fileapi/file_system_operation_context.h" 44 #include "webkit/fileapi/file_system_path_manager.h" 45 #include "webkit/fileapi/file_system_types.h" 46 #include "webkit/fileapi/file_system_util.h" 47 #include "webkit/fileapi/file_system_file_util.h" 48 #include "webkit/fileapi/local_file_system_file_util.h" 223 : public fileapi::FileSystemCallbackDispatcher [all...] |
file_manager_util.cc | 21 #include "webkit/fileapi/file_system_context.h" 22 #include "webkit/fileapi/file_system_mount_point_provider.h" 23 #include "webkit/fileapi/file_system_util.h" 71 fileapi::FileSystemPathManager* path_manager = 73 fileapi::ExternalFileSystemMountPointProvider* provider = 92 GURL base_url = fileapi::GetFileSystemRootURI(origin_url, 93 fileapi::kFileSystemTypeExternal);
|
extension_data_deleter.h | 18 namespace fileapi { namespace 85 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
extension_data_deleter.cc | 16 #include "webkit/fileapi/file_system_context.h"
|
extension_file_browser_private_api.h | 17 #include "webkit/fileapi/file_system_callback_dispatcher.h"
|
/external/chromium/chrome/browser/net/ |
file_system_url_request_job_factory.cc | 11 #include "webkit/fileapi/file_system_url_request_job.h" 12 #include "webkit/fileapi/file_system_dir_url_request_job.h" 18 fileapi::FileSystemContext* file_system_context = 27 return new fileapi::FileSystemDirURLRequestJob(request, file_system_context, 30 return new fileapi::FileSystemURLRequestJob(request, file_system_context,
|
chrome_url_request_context.h | 26 #include "webkit/fileapi/file_system_context.h" 68 fileapi::FileSystemContext* file_system_context() const { 114 void set_file_system_context(fileapi::FileSystemContext* context) { 147 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
/external/webkit/Source/WebCore/ |
CodeGenerators.pri | 161 fileapi/Blob.idl \ 162 fileapi/DirectoryEntry.idl \ 163 fileapi/DirectoryEntrySync.idl \ 164 fileapi/DirectoryReader.idl \ 165 fileapi/DirectoryReaderSync.idl \ 166 fileapi/DOMFileSystem.idl \ 167 fileapi/DOMFileSystemSync.idl \ 168 fileapi/EntriesCallback.idl \ 169 fileapi/Entry.idl \ 170 fileapi/EntryArray.idl [all...] |
CMakeLists.txt | 12 "${WEBCORE_DIR}/fileapi" 88 fileapi 188 fileapi/Blob.idl 189 fileapi/FileError.idl 190 fileapi/File.idl 191 fileapi/FileList.idl 192 fileapi/FileReader.idl 193 fileapi/WebKitBlobBuilder.idl 697 fileapi/Blob.cpp 698 fileapi/BlobURL.cp [all...] |
Android.derived.jscbindings.mk | 165 # Fileapi 167 $(intermediates)/fileapi/JSBlob.h \ 168 $(intermediates)/fileapi/JSDOMFileSystem.h \ 169 $(intermediates)/fileapi/JSDOMFileSystemSync.h \ 170 $(intermediates)/fileapi/JSDirectoryEntry.h \ 171 $(intermediates)/fileapi/JSDirectoryEntrySync.h \ 172 $(intermediates)/fileapi/JSDirectoryReader.h \ 173 $(intermediates)/fileapi/JSDirectoryReaderSync.h \ 174 $(intermediates)/fileapi/JSEntriesCallback.h \ 175 $(intermediates)/fileapi/JSEntry.h [all...] |
WebCore.pro | 615 fileapi/Blob.cpp \ 616 fileapi/BlobURL.cpp \ 617 fileapi/File.cpp \ 618 fileapi/FileList.cpp \ 619 fileapi/FileReader.cpp \ 620 fileapi/FileReaderLoader.cpp \ 621 fileapi/FileReaderSync.cpp \ 622 fileapi/FileStreamProxy.cpp \ 623 fileapi/FileThread.cpp \ 624 fileapi/ThreadableBlobRegistry.cpp [all...] |
WebCore.gypi | [all...] |
GNUmakefile.list.am | [all...] |
Android.mk | 276 fileapi/Blob.cpp \ 277 fileapi/BlobURL.cpp \ 278 fileapi/DOMFileSystemBase.cpp \ 279 fileapi/DOMFileSystemSync.cpp \ 280 fileapi/DirectoryEntrySync.cpp \ 281 fileapi/DirectoryReaderSync.cpp \ 282 fileapi/EntryArraySync.cpp \ 283 fileapi/EntryBase.cpp \ 284 fileapi/EntrySync.cpp \ 285 fileapi/File.cpp [all...] |
GNUmakefile.am | 22 -I$(srcdir)/Source/WebCore/fileapi \ [all...] |
/external/webkit/Source/WebCore/fileapi/ |
FileReader.cpp | 84 LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? static_cast<File*>(blob)->path().utf8().data() : ""); 94 LOG(FileAPI, "FileReader: reading as binary: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? static_cast<File*>(blob)->path().utf8().data() : ""); 104 LOG(FileAPI, "FileReader: reading as text: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? static_cast<File*>(blob)->path().utf8().data() : ""); 115 LOG(FileAPI, "FileReader: reading as data URL: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? static_cast<File*>(blob)->path().utf8().data() : ""); 146 LOG(FileAPI, "FileReader: aborting\n");
|
FileCallback.idl | 31 module fileapi {
|
FileWriterCallback.idl | 31 module fileapi {
|
FileThread.cpp | 98 LOG(FileAPI, "Started FileThread %p", this); 107 LOG(FileAPI, "About to detach thread %i and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
|
/external/chromium/chrome/browser/profiles/ |
profile_io_data.h | 26 namespace fileapi { namespace 28 } // namespace fileapi 112 scoped_refptr<fileapi::FileSystemContext> file_system_context; 222 mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
profile_impl.h | 81 virtual fileapi::FileSystemContext* GetFileSystemContext(); 254 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
/external/webkit/Source/WebCore/platform/ |
Logging.cpp | 135 if (equalIgnoringCase(channelName, String("FileAPI")))
|
/external/chromium/android/autofill/ |
profile_android.h | 50 namespace fileapi { namespace 172 virtual fileapi::FileSystemContext* GetFileSystemContext() { NOTREACHED(); return NULL; }
|