summaryrefslogtreecommitdiffstats
path: root/chrome/common/translate_errors.h
blob: a1ece4c880f7101e459133ec60a3167f170f155c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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.
// Note: TranslateErrors is used for UMA. enum TranslateError in histograms.xml
// should be updated when the type is updated.

class TranslateErrors {
 public:
  enum Type {
    NONE = 0,
    NETWORK,               // No connectivity.
    INITIALIZATION_ERROR,  // The translation script failed to initialize.
    UNKNOWN_LANGUAGE,      // The page's language could not be detected.
    UNSUPPORTED_LANGUAGE,  // The server detected a language that the browser
                           // does not know.
    IDENTICAL_LANGUAGES,   // The original and target languages are the same.
    TRANSLATION_ERROR,     // An error was reported by the translation script
                           // during translation.
    TRANSLATE_ERROR_MAX,
  };

 private:
  TranslateErrors() {}

  DISALLOW_COPY_AND_ASSIGN(TranslateErrors);
};

#endif  // CHROME_COMMON_TRANSLATE_ERRORS_H_