// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/utility/image_writer/error_message_strings.h" #include "build/build_config.h" namespace image_writer { namespace error { const char kInvalidDevice[] = …; const char kOpenDevice[] = …; const char kOpenImage[] = …; const char kOperationAlreadyInProgress[] = …; const char kReadDevice[] = …; const char kReadImage[] = …; const char kWriteImage[] = …; #if BUILDFLAG(IS_MAC) const char kUnmountVolumes[] = "Unable to unmount the device."; #endif const char kVerificationFailed[] = …; } // namespace error } // namespace image_writer