Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2048)

Unified Diff: content/browser/hyphenator/hyphenator_message_filter.cc

Issue 12213066: Use base namespace for FilePath in content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/hyphenator/hyphenator_message_filter.cc
diff --git a/content/browser/hyphenator/hyphenator_message_filter.cc b/content/browser/hyphenator/hyphenator_message_filter.cc
index 88fa88ec1c26c3dfa5f8367b30b1fa1908d38c35..1653ea32b2c3886b9e34af4cff2596aa904518b8 100644
--- a/content/browser/hyphenator/hyphenator_message_filter.cc
+++ b/content/browser/hyphenator/hyphenator_message_filter.cc
@@ -45,7 +45,7 @@ HyphenatorMessageFilter::~HyphenatorMessageFilter() {
}
}
-void HyphenatorMessageFilter::SetDictionaryBase(const FilePath& base) {
+void HyphenatorMessageFilter::SetDictionaryBase(const base::FilePath& base) {
dictionary_base_ = base;
}
@@ -99,7 +99,7 @@ void HyphenatorMessageFilter::OpenDictionary(const string16& locale) {
if (rule_file != "en-US")
return;
rule_file.append("-1-0.dic");
- FilePath rule_path = dictionary_base_.AppendASCII(rule_file);
+ base::FilePath rule_path = dictionary_base_.AppendASCII(rule_file);
dictionary_file_ = base::CreatePlatformFile(
rule_path,
base::PLATFORM_FILE_READ | base::PLATFORM_FILE_OPEN,

Powered by Google App Engine
This is Rietveld 408576698