| Index: ui/base/resource/resource_bundle_gtk.cc
|
| diff --git a/ui/base/resource/resource_bundle_gtk.cc b/ui/base/resource/resource_bundle_gtk.cc
|
| index 4bf1bde9bf31e36d1d1f3a5e59bed8f4f06acd8a..44c3ebcd10d91a9d42e471c053524aef26c42488 100644
|
| --- a/ui/base/resource/resource_bundle_gtk.cc
|
| +++ b/ui/base/resource/resource_bundle_gtk.cc
|
| @@ -54,12 +54,12 @@ GdkPixbuf* LoadPixbuf(base::RefCountedStaticMemory* data, bool rtl_enabled) {
|
| }
|
|
|
| FilePath GetResourcesPakFilePath(const std::string& pak_name) {
|
| - FilePath path;
|
| + base::FilePath path;
|
| if (PathService::Get(base::DIR_MODULE, &path))
|
| return path.AppendASCII(pak_name.c_str());
|
|
|
| // Return just the name of the pack file.
|
| - return FilePath(pak_name.c_str());
|
| + return base::FilePath(pak_name.c_str());
|
| }
|
|
|
| } // namespace
|
|
|