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

Side by Side Diff: storage/browser/fileapi/file_system_operation_impl.h

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed copyright Created 5 years, 11 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
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 STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_IMPL_H_ 5 #ifndef STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_IMPL_H_
6 #define STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_IMPL_H_ 6 #define STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "storage/browser/blob/scoped_file.h"
13 #include "storage/browser/fileapi/file_system_operation.h" 14 #include "storage/browser/fileapi/file_system_operation.h"
14 #include "storage/browser/fileapi/file_system_operation_context.h" 15 #include "storage/browser/fileapi/file_system_operation_context.h"
15 #include "storage/browser/fileapi/file_system_url.h" 16 #include "storage/browser/fileapi/file_system_url.h"
16 #include "storage/browser/fileapi/file_writer_delegate.h" 17 #include "storage/browser/fileapi/file_writer_delegate.h"
17 #include "storage/browser/storage_browser_export.h" 18 #include "storage/browser/storage_browser_export.h"
18 #include "storage/common/blob/scoped_file.h"
19 #include "storage/common/quota/quota_types.h" 19 #include "storage/common/quota/quota_types.h"
20 20
21 namespace storage { 21 namespace storage {
22 22
23 class AsyncFileUtil; 23 class AsyncFileUtil;
24 class FileSystemContext; 24 class FileSystemContext;
25 class RecursiveOperationDelegate; 25 class RecursiveOperationDelegate;
26 26
27 // The default implementation of FileSystemOperation for file systems. 27 // The default implementation of FileSystemOperation for file systems.
28 class STORAGE_EXPORT FileSystemOperationImpl 28 class STORAGE_EXPORT FileSystemOperationImpl
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 OperationType pending_operation_; 194 OperationType pending_operation_;
195 195
196 base::WeakPtrFactory<FileSystemOperationImpl> weak_factory_; 196 base::WeakPtrFactory<FileSystemOperationImpl> weak_factory_;
197 197
198 DISALLOW_COPY_AND_ASSIGN(FileSystemOperationImpl); 198 DISALLOW_COPY_AND_ASSIGN(FileSystemOperationImpl);
199 }; 199 };
200 200
201 } // namespace storage 201 } // namespace storage
202 202
203 #endif // STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_IMPL_H_ 203 #endif // STORAGE_BROWSER_FILEAPI_FILE_SYSTEM_OPERATION_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698