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

Unified Diff: chrome/browser/parsers/metadata_parser_manager.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « chrome/browser/parsers/metadata_parser_jpeg_factory.h ('k') | chrome/browser/platform_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/parsers/metadata_parser_manager.h
diff --git a/chrome/browser/parsers/metadata_parser_manager.h b/chrome/browser/parsers/metadata_parser_manager.h
index 910629f25b373ed94f02a63bd9bfd026ef59467a..2d5a759806442b7222d9038d67f54a06736ec0c9 100644
--- a/chrome/browser/parsers/metadata_parser_manager.h
+++ b/chrome/browser/parsers/metadata_parser_manager.h
@@ -9,9 +9,12 @@
#include "base/memory/scoped_vector.h"
class MetadataParserFactory;
-class FilePath;
class MetadataParser;
+namespace base {
+class FilePath;
+}
+
// Metadata Parser manager is used to find the correct parser for a
// given file. Allows parsers to register themselves.
class MetadataParserManager {
@@ -28,7 +31,7 @@ class MetadataParserManager {
bool RegisterParserFactory(MetadataParserFactory* parser);
// Returns a new metadata parser for a given file.
- MetadataParser* GetParserForFile(const FilePath& path);
+ MetadataParser* GetParserForFile(const base::FilePath& path);
private:
ScopedVector<MetadataParserFactory> factories_;
« no previous file with comments | « chrome/browser/parsers/metadata_parser_jpeg_factory.h ('k') | chrome/browser/platform_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698