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

Side by Side Diff: chrome/browser/chromeos/drive/fileapi/async_file_util.h

Issue 1846723007: Fix IWYU violators that don't include scoped_ptr.h in CrOS build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 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 CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_ASYNC_FILE_UTIL_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_ASYNC_FILE_UTIL_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_ASYNC_FILE_UTIL_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_ASYNC_FILE_UTIL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h"
12 #include "storage/browser/fileapi/async_file_util.h" 13 #include "storage/browser/fileapi/async_file_util.h"
13 14
14 namespace drive { 15 namespace drive {
15 16
16 class FileSystemInterface; 17 class FileSystemInterface;
17 18
18 namespace internal { 19 namespace internal {
19 20
20 // The implementation of storage::AsyncFileUtil for Drive File System. 21 // The implementation of storage::AsyncFileUtil for Drive File System.
21 class AsyncFileUtil : public storage::AsyncFileUtil { 22 class AsyncFileUtil : public storage::AsyncFileUtil {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 const CreateSnapshotFileCallback& callback) override; 85 const CreateSnapshotFileCallback& callback) override;
85 86
86 private: 87 private:
87 DISALLOW_COPY_AND_ASSIGN(AsyncFileUtil); 88 DISALLOW_COPY_AND_ASSIGN(AsyncFileUtil);
88 }; 89 };
89 90
90 } // namespace internal 91 } // namespace internal
91 } // namespace drive 92 } // namespace drive
92 93
93 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_ASYNC_FILE_UTIL_H_ 94 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_ASYNC_FILE_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698