diff options
author | sidchat@google.com <sidchat@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-07 17:41:14 +0000 |
---|---|---|
committer | sidchat@google.com <sidchat@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-07 17:41:14 +0000 |
commit | 1829837c05b277ec0efbdb6ceda25d9fa4ebfd46 (patch) | |
tree | 8f8ed237578fa82cb52dcb54afce6d40d0cae4eb /chrome/browser/spellchecker_common.h | |
parent | 700d3d58213d15dea1beb2f7f7122e77e7ea2a47 (diff) | |
download | chromium_src-1829837c05b277ec0efbdb6ceda25d9fa4ebfd46.zip chromium_src-1829837c05b277ec0efbdb6ceda25d9fa4ebfd46.tar.gz chromium_src-1829837c05b277ec0efbdb6ceda25d9fa4ebfd46.tar.bz2 |
Change the use of typedef Language in Spell Check files back to std::string. It is unnecessary, and is conflicting with enum Language definition for compact language detection library.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/150139
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20042 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/spellchecker_common.h')
-rw-r--r-- | chrome/browser/spellchecker_common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/browser/spellchecker_common.h b/chrome/browser/spellchecker_common.h index a64b724..4d393ab 100644 --- a/chrome/browser/spellchecker_common.h +++ b/chrome/browser/spellchecker_common.h @@ -11,9 +11,6 @@ // Some constants and typedefs that are common to all spellchecker // files/classes/backends/platforms/whatever. -typedef std::string Language; -typedef std::vector<Language> Languages; - static const int kMaxSuggestions = 5; // Max number of dictionary suggestions. static const int kMaxAutoCorrectWordSize = 8; |