| Index: ui/base/resource/data_pack.cc
|
| diff --git a/ui/base/resource/data_pack.cc b/ui/base/resource/data_pack.cc
|
| index 87c8735d319d4339a7dfd78ad8c081ca6d95ba44..793e963c7c3c7c861dffa71767006b1df58552c2 100644
|
| --- a/ui/base/resource/data_pack.cc
|
| +++ b/ui/base/resource/data_pack.cc
|
| @@ -71,7 +71,7 @@ DataPack::DataPack(ui::ScaleFactor scale_factor)
|
| DataPack::~DataPack() {
|
| }
|
|
|
| -bool DataPack::LoadFromPath(const FilePath& path) {
|
| +bool DataPack::LoadFromPath(const base::FilePath& path) {
|
| mmap_.reset(new file_util::MemoryMappedFile);
|
| if (!mmap_->Initialize(path)) {
|
| DLOG(ERROR) << "Failed to mmap datapack";
|
| @@ -212,7 +212,7 @@ ui::ScaleFactor DataPack::GetScaleFactor() const {
|
| }
|
|
|
| // static
|
| -bool DataPack::WritePack(const FilePath& path,
|
| +bool DataPack::WritePack(const base::FilePath& path,
|
| const std::map<uint16, base::StringPiece>& resources,
|
| TextEncodingType textEncodingType) {
|
| FILE* file = file_util::OpenFile(path, "wb");
|
|
|