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

Side by Side Diff: components/drive/chromeos/resource_metadata.h

Issue 2443103003: Remove unused include in sequenced_worker_pool.h (Closed)
Patch Set: merge up to r429325 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RESOURCE_METADATA_H_ 5 #ifndef COMPONENTS_DRIVE_CHROMEOS_RESOURCE_METADATA_H_
6 #define COMPONENTS_DRIVE_CHROMEOS_RESOURCE_METADATA_H_ 6 #define COMPONENTS_DRIVE_CHROMEOS_RESOURCE_METADATA_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/ref_counted.h"
18 #include "base/sequenced_task_runner.h"
17 #include "base/threading/thread_checker.h" 19 #include "base/threading/thread_checker.h"
18 #include "components/drive/file_errors.h" 20 #include "components/drive/file_errors.h"
19 #include "components/drive/resource_metadata_storage.h" 21 #include "components/drive/resource_metadata_storage.h"
20 22
21 namespace base { 23 namespace base {
22 class SequencedTaskRunner; 24 class SequencedTaskRunner;
23 } 25 }
24 26
25 namespace drive { 27 namespace drive {
26 28
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 142
141 base::ThreadChecker thread_checker_; 143 base::ThreadChecker thread_checker_;
142 144
143 DISALLOW_COPY_AND_ASSIGN(ResourceMetadata); 145 DISALLOW_COPY_AND_ASSIGN(ResourceMetadata);
144 }; 146 };
145 147
146 } // namespace internal 148 } // namespace internal
147 } // namespace drive 149 } // namespace drive
148 150
149 #endif // COMPONENTS_DRIVE_CHROMEOS_RESOURCE_METADATA_H_ 151 #endif // COMPONENTS_DRIVE_CHROMEOS_RESOURCE_METADATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698