diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 17:35:16 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 17:35:16 +0000 |
commit | 10d4cf7629eeaa03891187a301898d4429b52ece (patch) | |
tree | 97366a1c8586e77dc809cbdcfe405963752071ad /chrome/common | |
parent | efac2170ca53586e6cd34e7ec7da88e7747f6d70 (diff) | |
download | chromium_src-10d4cf7629eeaa03891187a301898d4429b52ece.zip chromium_src-10d4cf7629eeaa03891187a301898d4429b52ece.tar.gz chromium_src-10d4cf7629eeaa03891187a301898d4429b52ece.tar.bz2 |
Rename SpellCheckCommon namespace to chrome.
BUG=133126,133088
R=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10573017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143200 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/spellcheck_common.cc | 6 | ||||
-rw-r--r-- | chrome/common/spellcheck_common.h | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/chrome/common/spellcheck_common.cc b/chrome/common/spellcheck_common.cc index c4e245c..73aeb86 100644 --- a/chrome/common/spellcheck_common.cc +++ b/chrome/common/spellcheck_common.cc @@ -6,7 +6,8 @@ #include "base/file_path.h" -namespace SpellCheckCommon { +namespace chrome { +namespace spellcheck_common { static const struct { // The language. @@ -177,4 +178,5 @@ void SpellCheckLanguages(std::vector<std::string>* languages) { } } -} // namespace SpellCheckCommon +} // namespace spellcheck_common +} // namespace chrome diff --git a/chrome/common/spellcheck_common.h b/chrome/common/spellcheck_common.h index cafffa8..e4ce072 100644 --- a/chrome/common/spellcheck_common.h +++ b/chrome/common/spellcheck_common.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 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. @@ -11,7 +11,8 @@ class FilePath; -namespace SpellCheckCommon { +namespace chrome { +namespace spellcheck_common { // Max number of dictionary suggestions. static const int kMaxSuggestions = 5; @@ -26,6 +27,7 @@ std::string GetCorrespondingSpellCheckLanguage(const std::string& language); // Get SpellChecker supported languages. void SpellCheckLanguages(std::vector<std::string>* languages); -} // namespace SpellCheckCommon +} // namespace spellcheck_common +} // namespace chrome #endif // CHROME_COMMON_SPELLCHECK_COMMON_H_ |