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

Side by Side Diff: components/drive/chromeos/file_system/create_directory_operation.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years 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 (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 COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_CREATE_DIRECTORY_OPERATION_H_ 5 #ifndef COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_CREATE_DIRECTORY_OPERATION_H_
6 #define COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_CREATE_DIRECTORY_OPERATION_H_ 6 #define COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_CREATE_DIRECTORY_OPERATION_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "base/threading/thread_checker.h" 13 #include "base/threading/thread_checker.h"
14 #include "components/drive/file_errors.h" 14 #include "components/drive/file_errors.h"
15 15
16 namespace base { 16 namespace base {
17 class FilePath; 17 class FilePath;
18 class SequencedTaskRunner; 18 class SequencedTaskRunner;
19 } // namespace base 19 } // namespace base
20 20
21 namespace drive { 21 namespace drive {
22 22
23 class FileChange; 23 class FileChange;
24 class ResourceEntry;
25 24
26 namespace internal { 25 namespace internal {
27 class ResourceMetadata; 26 class ResourceMetadata;
28 } // namespace internal 27 } // namespace internal
29 28
30 namespace file_system { 29 namespace file_system {
31 30
32 class OperationDelegate; 31 class OperationDelegate;
33 32
34 // This class encapsulates the drive Create Directory function. It is 33 // This class encapsulates the drive Create Directory function. It is
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 // Note: This should remain the last member so it'll be destroyed and 69 // Note: This should remain the last member so it'll be destroyed and
71 // invalidate the weak pointers before any other members are destroyed. 70 // invalidate the weak pointers before any other members are destroyed.
72 base::WeakPtrFactory<CreateDirectoryOperation> weak_ptr_factory_; 71 base::WeakPtrFactory<CreateDirectoryOperation> weak_ptr_factory_;
73 DISALLOW_COPY_AND_ASSIGN(CreateDirectoryOperation); 72 DISALLOW_COPY_AND_ASSIGN(CreateDirectoryOperation);
74 }; 73 };
75 74
76 } // namespace file_system 75 } // namespace file_system
77 } // namespace drive 76 } // namespace drive
78 77
79 #endif // COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_CREATE_DIRECTORY_OPERATION_H_ 78 #endif // COMPONENTS_DRIVE_CHROMEOS_FILE_SYSTEM_CREATE_DIRECTORY_OPERATION_H_
OLDNEW
« no previous file with comments | « components/drive/chromeos/file_system.h ('k') | components/drive/chromeos/file_system/operation_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698