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

Unified Diff: content/browser/mime_registry_message_filter.h

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
« no previous file with comments | « content/browser/media/media_browsertest.cc ('k') | content/browser/mime_registry_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/mime_registry_message_filter.h
diff --git a/content/browser/mime_registry_message_filter.h b/content/browser/mime_registry_message_filter.h
index 085e5d24d3825d98e19f1b51ec83605d1443e0a2..5dc81536e1a7a5264d38f1847be0d7d41e2e3f7f 100644
--- a/content/browser/mime_registry_message_filter.h
+++ b/content/browser/mime_registry_message_filter.h
@@ -23,12 +23,13 @@ class MimeRegistryMessageFilter : public BrowserMessageFilter {
private:
virtual ~MimeRegistryMessageFilter();
- void OnGetMimeTypeFromExtension(const FilePath::StringType& ext,
+ void OnGetMimeTypeFromExtension(const base::FilePath::StringType& ext,
std::string* mime_type);
- void OnGetMimeTypeFromFile(const FilePath& file_path,
+ void OnGetMimeTypeFromFile(const base::FilePath& file_path,
std::string* mime_type);
- void OnGetPreferredExtensionForMimeType(const std::string& mime_type,
- FilePath::StringType* extension);
+ void OnGetPreferredExtensionForMimeType(
+ const std::string& mime_type,
+ base::FilePath::StringType* extension);
};
} // namespace content
« no previous file with comments | « content/browser/media/media_browsertest.cc ('k') | content/browser/mime_registry_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698