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_ERROR_MESSAGES_H_ | 5 #ifndef CHROME_UTILITY_IMAGE_WRITER_ERROR_MESSAGES_H_ |
6 #define CHROME_UTILITY_IMAGE_WRITER_ERROR_MESSAGES_H_ | 6 #define CHROME_UTILITY_IMAGE_WRITER_ERROR_MESSAGES_H_ |
7 | 7 |
| 8 #include "build/build_config.h" |
| 9 |
8 namespace image_writer { | 10 namespace image_writer { |
9 namespace error { | 11 namespace error { |
10 | 12 |
11 extern const char kCleanUp[]; | |
12 extern const char kCloseDevice[]; | |
13 extern const char kCloseImage[]; | |
14 extern const char kInvalidDevice[]; | 13 extern const char kInvalidDevice[]; |
15 extern const char kNoOperationInProgress[]; | |
16 extern const char kOpenDevice[]; | 14 extern const char kOpenDevice[]; |
17 extern const char kOpenImage[]; | 15 extern const char kOpenImage[]; |
18 extern const char kOperationAlreadyInProgress[]; | 16 extern const char kOperationAlreadyInProgress[]; |
19 extern const char kReadDevice[]; | 17 extern const char kReadDevice[]; |
20 extern const char kReadImage[]; | 18 extern const char kReadImage[]; |
21 extern const char kWriteImage[]; | 19 extern const char kWriteImage[]; |
| 20 #if defined(OS_MACOSX) |
22 extern const char kUnmountVolumes[]; | 21 extern const char kUnmountVolumes[]; |
| 22 #endif |
23 extern const char kVerificationFailed[]; | 23 extern const char kVerificationFailed[]; |
24 | 24 |
25 } // namespace error | 25 } // namespace error |
26 } // namespace image_writer | 26 } // namespace image_writer |
27 | 27 |
28 #endif // CHROME_UTILITY_IMAGE_WRITER_ERROR_MESSAGES_H_ | 28 #endif // CHROME_UTILITY_IMAGE_WRITER_ERROR_MESSAGES_H_ |
OLD | NEW |