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 #include "build/build_config.h" |
5 #include "chrome/utility/image_writer/error_messages.h" | 6 #include "chrome/utility/image_writer/error_messages.h" |
6 | 7 |
7 namespace image_writer { | 8 namespace image_writer { |
8 namespace error { | 9 namespace error { |
9 | 10 |
10 const char kInvalidDevice[] = "Invalid device path."; | 11 const char kInvalidDevice[] = "Invalid device path."; |
11 const char kOpenDevice[] = "Failed to open device."; | 12 const char kOpenDevice[] = "Failed to open device."; |
12 const char kOpenImage[] = "Failed to open image."; | 13 const char kOpenImage[] = "Failed to open image."; |
13 const char kOperationAlreadyInProgress[] = "Operation already in progress."; | 14 const char kOperationAlreadyInProgress[] = "Operation already in progress."; |
14 const char kReadDevice[] = "Failed to read device."; | 15 const char kReadDevice[] = "Failed to read device."; |
15 const char kReadImage[] = "Failed to read image."; | 16 const char kReadImage[] = "Failed to read image."; |
16 const char kWriteImage[] = "Writing image to device failed."; | 17 const char kWriteImage[] = "Writing image to device failed."; |
17 #if defined(OS_MACOSX) | 18 #if defined(OS_MACOSX) |
18 const char kUnmountVolumes[] = "Unable to unmount the device."; | 19 const char kUnmountVolumes[] = "Unable to unmount the device."; |
19 #endif | 20 #endif |
20 const char kVerificationFailed[] = "Verification failed."; | 21 const char kVerificationFailed[] = "Verification failed."; |
21 | 22 |
22 } // namespace error | 23 } // namespace error |
23 } // namespace image_writer | 24 } // namespace image_writer |
OLD | NEW |