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

Side by Side Diff: components/drive/chromeos/directory_loader.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
« no previous file with comments | « components/drive/chromeos/change_list_loader.h ('k') | components/drive/chromeos/file_system.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_DIRECTORY_LOADER_H_ 5 #ifndef COMPONENTS_DRIVE_CHROMEOS_DIRECTORY_LOADER_H_
6 #define COMPONENTS_DRIVE_CHROMEOS_DIRECTORY_LOADER_H_ 6 #define COMPONENTS_DRIVE_CHROMEOS_DIRECTORY_LOADER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 22 matching lines...) Expand all
33 33
34 namespace drive { 34 namespace drive {
35 35
36 class EventLogger; 36 class EventLogger;
37 class JobScheduler; 37 class JobScheduler;
38 class ResourceEntry; 38 class ResourceEntry;
39 39
40 namespace internal { 40 namespace internal {
41 41
42 class AboutResourceLoader; 42 class AboutResourceLoader;
43 class ChangeList;
44 class ChangeListLoaderObserver; 43 class ChangeListLoaderObserver;
45 class DirectoryFetchInfo; 44 class DirectoryFetchInfo;
46 class LoaderController; 45 class LoaderController;
47 class ResourceMetadata; 46 class ResourceMetadata;
48 47
49 // DirectoryLoader is used to load directory contents. 48 // DirectoryLoader is used to load directory contents.
50 class DirectoryLoader { 49 class DirectoryLoader {
51 public: 50 public:
52 DirectoryLoader(EventLogger* logger, 51 DirectoryLoader(EventLogger* logger,
53 base::SequencedTaskRunner* blocking_task_runner, 52 base::SequencedTaskRunner* blocking_task_runner,
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 // Note: This should remain the last member so it'll be destroyed and 143 // Note: This should remain the last member so it'll be destroyed and
145 // invalidate its weak pointers before any other members are destroyed. 144 // invalidate its weak pointers before any other members are destroyed.
146 base::WeakPtrFactory<DirectoryLoader> weak_ptr_factory_; 145 base::WeakPtrFactory<DirectoryLoader> weak_ptr_factory_;
147 DISALLOW_COPY_AND_ASSIGN(DirectoryLoader); 146 DISALLOW_COPY_AND_ASSIGN(DirectoryLoader);
148 }; 147 };
149 148
150 } // namespace internal 149 } // namespace internal
151 } // namespace drive 150 } // namespace drive
152 151
153 #endif // COMPONENTS_DRIVE_CHROMEOS_DIRECTORY_LOADER_H_ 152 #endif // COMPONENTS_DRIVE_CHROMEOS_DIRECTORY_LOADER_H_
OLDNEW
« no previous file with comments | « components/drive/chromeos/change_list_loader.h ('k') | components/drive/chromeos/file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698