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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #ifndef FileSystemCallbacks_h | 31 #ifndef FileSystemCallbacks_h |
32 #define FileSystemCallbacks_h | 32 #define FileSystemCallbacks_h |
33 | 33 |
34 #include "modules/filesystem/EntriesCallback.h" | 34 #include "modules/filesystem/EntriesCallback.h" |
35 #include "platform/AsyncFileSystemCallbacks.h" | 35 #include "platform/AsyncFileSystemCallbacks.h" |
36 #include "platform/FileSystemType.h" | 36 #include "platform/FileSystemType.h" |
37 #include "wtf/Vector.h" | 37 #include "wtf/Vector.h" |
38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
39 | 39 |
40 namespace WebCore { | 40 namespace blink { |
41 | 41 |
42 class DOMFileSystemBase; | 42 class DOMFileSystemBase; |
43 class DirectoryReaderBase; | 43 class DirectoryReaderBase; |
44 class EntriesCallback; | 44 class EntriesCallback; |
45 class EntryCallback; | 45 class EntryCallback; |
46 class ErrorCallback; | 46 class ErrorCallback; |
47 class FileCallback; | 47 class FileCallback; |
48 struct FileMetadata; | 48 struct FileMetadata; |
49 class FileSystemCallback; | 49 class FileSystemCallback; |
50 class FileWriterBase; | 50 class FileWriterBase; |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 virtual void didSucceed() OVERRIDE; | 169 virtual void didSucceed() OVERRIDE; |
170 | 170 |
171 private: | 171 private: |
172 VoidCallbacks(PassOwnPtr<VoidCallback>, PassOwnPtr<ErrorCallback>, Execution
Context*, DOMFileSystemBase*); | 172 VoidCallbacks(PassOwnPtr<VoidCallback>, PassOwnPtr<ErrorCallback>, Execution
Context*, DOMFileSystemBase*); |
173 OwnPtr<VoidCallback> m_successCallback; | 173 OwnPtr<VoidCallback> m_successCallback; |
174 }; | 174 }; |
175 | 175 |
176 } // namespace | 176 } // namespace |
177 | 177 |
178 #endif // FileSystemCallbacks_h | 178 #endif // FileSystemCallbacks_h |
OLD | NEW |