summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/npapi/plugin_stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/plugins/npapi/plugin_stream.cc')
-rw-r--r--webkit/plugins/npapi/plugin_stream.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/npapi/plugin_stream.cc b/webkit/plugins/npapi/plugin_stream.cc
index 8946030..543ab3e 100644
--- a/webkit/plugins/npapi/plugin_stream.cc
+++ b/webkit/plugins/npapi/plugin_stream.cc
@@ -84,9 +84,9 @@ bool PluginStream::Open(const std::string& mime_type,
GURL gurl(stream_.url);
#if defined(OS_WIN)
- FilePath path(UTF8ToWide(gurl.path()));
+ base::FilePath path(UTF8ToWide(gurl.path()));
#elif defined(OS_POSIX)
- FilePath path(gurl.path());
+ base::FilePath path(gurl.path());
#endif
if (net::GetMimeTypeFromFile(path, &temp_mime_type))
char_mime_type = temp_mime_type.c_str();