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

Side by Side Diff: webkit/browser/fileapi/recursive_operation_delegate.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 WEBKIT_BROWSER_FILEAPI_RECURSIVE_OPERATION_DELEGATE_H_ 5 #ifndef WEBKIT_BROWSER_FILEAPI_RECURSIVE_OPERATION_DELEGATE_H_
6 #define WEBKIT_BROWSER_FILEAPI_RECURSIVE_OPERATION_DELEGATE_H_ 6 #define WEBKIT_BROWSER_FILEAPI_RECURSIVE_OPERATION_DELEGATE_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <stack> 9 #include <stack>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "webkit/browser/fileapi/file_system_operation.h" 14 #include "webkit/browser/fileapi/file_system_operation.h"
15 #include "webkit/browser/fileapi/file_system_url.h" 15 #include "webkit/browser/fileapi/file_system_url.h"
16 16
17 namespace fileapi { 17 namespace storage {
18 18
19 class FileSystemContext; 19 class FileSystemContext;
20 class FileSystemOperationRunner; 20 class FileSystemOperationRunner;
21 21
22 // A base class for recursive operation delegates. 22 // A base class for recursive operation delegates.
23 // 23 //
24 // In short, each subclass should override ProcessFile and ProcessDirectory 24 // In short, each subclass should override ProcessFile and ProcessDirectory
25 // to process a directory or a file. To start the recursive operation it 25 // to process a directory or a file. To start the recursive operation it
26 // should also call StartRecursiveOperation. 26 // should also call StartRecursiveOperation.
27 class WEBKIT_STORAGE_BROWSER_EXPORT RecursiveOperationDelegate 27 class WEBKIT_STORAGE_BROWSER_EXPORT RecursiveOperationDelegate
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 StatusCallback callback_; 140 StatusCallback callback_;
141 std::stack<FileSystemURL> pending_directories_; 141 std::stack<FileSystemURL> pending_directories_;
142 std::stack<std::queue<FileSystemURL> > pending_directory_stack_; 142 std::stack<std::queue<FileSystemURL> > pending_directory_stack_;
143 std::queue<FileSystemURL> pending_files_; 143 std::queue<FileSystemURL> pending_files_;
144 int inflight_operations_; 144 int inflight_operations_;
145 bool canceled_; 145 bool canceled_;
146 146
147 DISALLOW_COPY_AND_ASSIGN(RecursiveOperationDelegate); 147 DISALLOW_COPY_AND_ASSIGN(RecursiveOperationDelegate);
148 }; 148 };
149 149
150 } // namespace fileapi 150 } // namespace storage
151 151
152 #endif // WEBKIT_BROWSER_FILEAPI_RECURSIVE_OPERATION_DELEGATE_H_ 152 #endif // WEBKIT_BROWSER_FILEAPI_RECURSIVE_OPERATION_DELEGATE_H_
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/quota/quota_reservation_manager.cc ('k') | webkit/browser/fileapi/recursive_operation_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698