| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ | 5 #ifndef CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ |
| 6 #define CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ | 6 #define CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/threading/non_thread_safe.h" | 13 #include "base/threading/non_thread_safe.h" |
| 14 #include "content/public/child/worker_thread.h" | 14 #include "content/public/child/worker_thread.h" |
| 15 #include "third_party/WebKit/public/platform/WebFileSystem.h" | 15 #include "third_party/WebKit/public/platform/WebFileSystem.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class WaitableEvent; | |
| 19 class SingleThreadTaskRunner; | 18 class SingleThreadTaskRunner; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace blink { | 21 namespace blink { |
| 23 class WebURL; | 22 class WebURL; |
| 24 class WebFileWriter; | 23 class WebFileWriter; |
| 25 class WebFileWriterClient; | 24 class WebFileWriterClient; |
| 26 } | 25 } |
| 27 | 26 |
| 28 namespace content { | 27 namespace content { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 CallbacksMap callbacks_; | 110 CallbacksMap callbacks_; |
| 112 int next_callbacks_id_; | 111 int next_callbacks_id_; |
| 113 WaitableCallbackResultsMap waitable_results_; | 112 WaitableCallbackResultsMap waitable_results_; |
| 114 | 113 |
| 115 DISALLOW_COPY_AND_ASSIGN(WebFileSystemImpl); | 114 DISALLOW_COPY_AND_ASSIGN(WebFileSystemImpl); |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace content | 117 } // namespace content |
| 119 | 118 |
| 120 #endif // CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ | 119 #endif // CONTENT_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_ |
| OLD | NEW |