diff options
Diffstat (limited to 'chrome/common/translate_errors.h')
-rw-r--r-- | chrome/common/translate_errors.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/chrome/common/translate_errors.h b/chrome/common/translate_errors.h new file mode 100644 index 0000000..de2e3bd --- /dev/null +++ b/chrome/common/translate_errors.h @@ -0,0 +1,24 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_COMMON_TRANSLATE_ERRORS_H_ +#define CHROME_COMMON_TRANSLATE_ERRORS_H_ + +// This file consolidates all the error types for translation of a page. + +class TranslateErrors { + public: + enum Type { + NONE = 0, + NETWORK = 1, + SERVER, + }; + + private: + TranslateErrors() {} + + DISALLOW_COPY_AND_ASSIGN(TranslateErrors); +}; + +#endif // CHROME_COMMON_TRANSLATE_ERRORS_H_ |