OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "modules/filesystem/EntryCallback.h" | 43 #include "modules/filesystem/EntryCallback.h" |
44 #include "modules/filesystem/ErrorCallback.h" | 44 #include "modules/filesystem/ErrorCallback.h" |
45 #include "modules/filesystem/FileSystemCallbacks.h" | 45 #include "modules/filesystem/FileSystemCallbacks.h" |
46 #include "modules/filesystem/MetadataCallback.h" | 46 #include "modules/filesystem/MetadataCallback.h" |
47 #include "public/platform/Platform.h" | 47 #include "public/platform/Platform.h" |
48 #include "public/platform/WebFileSystem.h" | 48 #include "public/platform/WebFileSystem.h" |
49 #include "public/platform/WebFileSystemCallbacks.h" | 49 #include "public/platform/WebFileSystemCallbacks.h" |
50 #include "weborigin/SecurityOrigin.h" | 50 #include "weborigin/SecurityOrigin.h" |
51 #include "wtf/OwnPtr.h" | 51 #include "wtf/OwnPtr.h" |
52 #include "wtf/text/StringBuilder.h" | 52 #include "wtf/text/StringBuilder.h" |
53 #include "wtf/text/WTFString.h" | |
54 | 53 |
55 namespace WebCore { | 54 namespace WebCore { |
56 | 55 |
57 const char DOMFileSystemBase::persistentPathPrefix[] = "persistent"; | 56 const char DOMFileSystemBase::persistentPathPrefix[] = "persistent"; |
58 const char DOMFileSystemBase::temporaryPathPrefix[] = "temporary"; | 57 const char DOMFileSystemBase::temporaryPathPrefix[] = "temporary"; |
59 const char DOMFileSystemBase::isolatedPathPrefix[] = "isolated"; | 58 const char DOMFileSystemBase::isolatedPathPrefix[] = "isolated"; |
60 const char DOMFileSystemBase::externalPathPrefix[] = "external"; | 59 const char DOMFileSystemBase::externalPathPrefix[] = "external"; |
61 | 60 |
62 DOMFileSystemBase::DOMFileSystemBase(ExecutionContext* context, const String& na
me, FileSystemType type, const KURL& rootURL) | 61 DOMFileSystemBase::DOMFileSystemBase(ExecutionContext* context, const String& na
me, FileSystemType type, const KURL& rootURL) |
63 : m_context(context) | 62 : m_context(context) |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 ASSERT(DOMFilePath::isAbsolute(path)); | 322 ASSERT(DOMFilePath::isAbsolute(path)); |
324 | 323 |
325 OwnPtr<AsyncFileSystemCallbacks> callbacks(EntriesCallbacks::create(successC
allback, errorCallback, reader, path)); | 324 OwnPtr<AsyncFileSystemCallbacks> callbacks(EntriesCallbacks::create(successC
allback, errorCallback, reader, path)); |
326 callbacks->setShouldBlockUntilCompletion(synchronousType == Synchronous); | 325 callbacks->setShouldBlockUntilCompletion(synchronousType == Synchronous); |
327 | 326 |
328 fileSystem()->readDirectory(createFileSystemURL(path), callbacks.release()); | 327 fileSystem()->readDirectory(createFileSystemURL(path), callbacks.release()); |
329 return true; | 328 return true; |
330 } | 329 } |
331 | 330 |
332 } // namespace WebCore | 331 } // namespace WebCore |
OLD | NEW |