| 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 27 matching lines...) Expand all Loading... |
| 38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 39 | 39 |
| 40 namespace blink { | 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 class FileMetadata; | 48 struct FileMetadata; |
| 49 class FileSystemCallback; | 49 class FileSystemCallback; |
| 50 class FileWriterBase; | 50 class FileWriterBase; |
| 51 class FileWriterBaseCallback; | 51 class FileWriterBaseCallback; |
| 52 class MetadataCallback; | 52 class MetadataCallback; |
| 53 class ExecutionContext; | 53 class ExecutionContext; |
| 54 class VoidCallback; | 54 class VoidCallback; |
| 55 | 55 |
| 56 class FileSystemCallbacksBase : public AsyncFileSystemCallbacks { | 56 class FileSystemCallbacksBase : public AsyncFileSystemCallbacks { |
| 57 public: | 57 public: |
| 58 virtual ~FileSystemCallbacksBase(); | 58 virtual ~FileSystemCallbacksBase(); |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 virtual void didSucceed() override; | 175 virtual void didSucceed() override; |
| 176 | 176 |
| 177 private: | 177 private: |
| 178 VoidCallbacks(VoidCallback*, ErrorCallback*, ExecutionContext*, DOMFileSyste
mBase*); | 178 VoidCallbacks(VoidCallback*, ErrorCallback*, ExecutionContext*, DOMFileSyste
mBase*); |
| 179 Persistent<VoidCallback> m_successCallback; | 179 Persistent<VoidCallback> m_successCallback; |
| 180 }; | 180 }; |
| 181 | 181 |
| 182 } // namespace blink | 182 } // namespace blink |
| 183 | 183 |
| 184 #endif // FileSystemCallbacks_h | 184 #endif // FileSystemCallbacks_h |
| OLD | NEW |