OLD | NEW |
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...) Loading... |
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_ |
OLD | NEW |