Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: content/child/fileapi/webfilesystem_impl.h

Issue 2473003002: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Another missing forward declaration Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/child/child_thread_impl.h ('k') | content/child/fileapi/webfilewriter_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/child/child_thread_impl.h ('k') | content/child/fileapi/webfilewriter_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698