| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<As
yncFileSystemCallbacks>); | 62 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<As
yncFileSystemCallbacks>); |
| 63 virtual void fileExists(const KURL& path, PassOwnPtr<AsyncFileSystemCallback
s>); | 63 virtual void fileExists(const KURL& path, PassOwnPtr<AsyncFileSystemCallback
s>); |
| 64 virtual void directoryExists(const KURL& path, PassOwnPtr<AsyncFileSystemCal
lbacks>); | 64 virtual void directoryExists(const KURL& path, PassOwnPtr<AsyncFileSystemCal
lbacks>); |
| 65 virtual void readDirectory(const KURL& path, PassOwnPtr<AsyncFileSystemCallb
acks>); | 65 virtual void readDirectory(const KURL& path, PassOwnPtr<AsyncFileSystemCallb
acks>); |
| 66 virtual void createWriter(AsyncFileWriterClient*, const KURL& path, PassOwnP
tr<AsyncFileSystemCallbacks>); | 66 virtual void createWriter(AsyncFileWriterClient*, const KURL& path, PassOwnP
tr<AsyncFileSystemCallbacks>); |
| 67 virtual void createSnapshotFileAndReadMetadata(const KURL& path, PassOwnPtr<
AsyncFileSystemCallbacks>); | 67 virtual void createSnapshotFileAndReadMetadata(const KURL& path, PassOwnPtr<
AsyncFileSystemCallbacks>); |
| 68 | 68 |
| 69 protected: | 69 protected: |
| 70 AsyncFileSystemChromium(); | 70 AsyncFileSystemChromium(); |
| 71 | 71 |
| 72 PassOwnPtr<AsyncFileSystemCallbacks> createSnapshotFileCallback(const KURL&
internalBlobURL, PassOwnPtr<AsyncFileSystemCallbacks>) const; | |
| 73 | |
| 74 WebKit::WebFileSystem* m_webFileSystem; | 72 WebKit::WebFileSystem* m_webFileSystem; |
| 75 }; | 73 }; |
| 76 | 74 |
| 77 } // namespace WebCore | 75 } // namespace WebCore |
| 78 | 76 |
| 79 #endif | 77 #endif |
| 80 | 78 |
| 81 #endif // AsyncFileSystemChromium_h | 79 #endif // AsyncFileSystemChromium_h |
| OLD | NEW |