Chromium Code Reviews

Side by Side Diff: chrome/utility/image_writer/image_writer_handler.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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_UTILITY_IMAGE_WRITER_IMAGE_WRITER_HANDLER_H_ 5 #ifndef CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_HANDLER_H_
6 #define CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_HANDLER_H_ 6 #define CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_HANDLER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/memory/scoped_ptr.h"
12 #include "chrome/utility/image_writer/image_writer.h" 13 #include "chrome/utility/image_writer/image_writer.h"
13 #include "chrome/utility/utility_message_handler.h" 14 #include "chrome/utility/utility_message_handler.h"
14 #include "ipc/ipc_message.h" 15 #include "ipc/ipc_message.h"
15 16
16 namespace base { 17 namespace base {
17 class FilePath; 18 class FilePath;
18 } 19 }
19 20
20 namespace image_writer { 21 namespace image_writer {
21 22
(...skipping 21 matching lines...)
43 void OnWriteStart(const base::FilePath& image, const base::FilePath& device); 44 void OnWriteStart(const base::FilePath& image, const base::FilePath& device);
44 void OnVerifyStart(const base::FilePath& image, const base::FilePath& device); 45 void OnVerifyStart(const base::FilePath& image, const base::FilePath& device);
45 void OnCancel(); 46 void OnCancel();
46 47
47 scoped_ptr<ImageWriter> image_writer_; 48 scoped_ptr<ImageWriter> image_writer_;
48 }; 49 };
49 50
50 } // namespace image_writer 51 } // namespace image_writer
51 52
52 #endif // CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_HANDLER_H_ 53 #endif // CHROME_UTILITY_IMAGE_WRITER_IMAGE_WRITER_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/log.cc ('k') | components/autofill/core/browser/webdata/autofill_table.h » ('j') | no next file with comments »

Powered by Google App Engine