| Index: webkit/plugins/npapi/test/plugin_geturl_test.cc
|
| diff --git a/webkit/plugins/npapi/test/plugin_geturl_test.cc b/webkit/plugins/npapi/test/plugin_geturl_test.cc
|
| index f03c5c31787d4b42dbe0bab6961ea0791f75bdd4..b1ab554e498ed5416f2108c2838e434eb398c00f 100644
|
| --- a/webkit/plugins/npapi/test/plugin_geturl_test.cc
|
| +++ b/webkit/plugins/npapi/test/plugin_geturl_test.cc
|
| @@ -187,10 +187,10 @@ NPError PluginGetURLTest::NewStream(NPMIMEType type, NPStream* stream,
|
| #if defined(OS_WIN)
|
| filename = filename.substr(8); // remove "file:///"
|
| // Assume an ASCII path on Windows.
|
| - FilePath path = FilePath(ASCIIToWide(filename));
|
| + base::FilePath path = base::FilePath(ASCIIToWide(filename));
|
| #else
|
| filename = filename.substr(7); // remove "file://"
|
| - FilePath path = FilePath(filename);
|
| + base::FilePath path = base::FilePath(filename);
|
| #endif
|
|
|
| test_file_ = file_util::OpenFile(path, "r");
|
|
|