| Index: webkit/plugins/npapi/plugin_stream.cc
|
| diff --git a/webkit/plugins/npapi/plugin_stream.cc b/webkit/plugins/npapi/plugin_stream.cc
|
| index 894603014c1d09450c4644aeaffcbf48c54e3226..543ab3efd296cff09d5ff939318c70d7beab8eb9 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();
|
|
|