| Index: ui/base/resource/resource_bundle_aurax11.cc
|
| ===================================================================
|
| --- ui/base/resource/resource_bundle_aurax11.cc (revision 134688)
|
| +++ ui/base/resource/resource_bundle_aurax11.cc (working copy)
|
| @@ -25,16 +25,20 @@
|
| namespace ui {
|
|
|
| void ResourceBundle::LoadCommonResources() {
|
| - AddDataPack(GetResourcesPakFilePath("chrome.pak"),
|
| + AddDataPack("chrome",
|
| + GetResourcesPakFilePath("chrome.pak"),
|
| ResourceHandle::kScaleFactor100x);
|
| - AddDataPack(GetResourcesPakFilePath("theme_resources_standard.pak"),
|
| + AddDataPack("theme_resources_standard",
|
| + GetResourcesPakFilePath("theme_resources_standard.pak"),
|
| ResourceHandle::kScaleFactor100x);
|
|
|
| if (ui::GetDisplayLayout() == ui::LAYOUT_TOUCH) {
|
| - AddDataPack(GetResourcesPakFilePath("ui_resources_touch.pak"),
|
| + AddDataPack("ui_resources_touch",
|
| + GetResourcesPakFilePath("ui_resources_touch.pak"),
|
| ResourceHandle::kScaleFactor100x);
|
| } else {
|
| - AddDataPack(GetResourcesPakFilePath("ui_resources_standard.pak"),
|
| + AddDataPack("ui_resources_standard",
|
| + GetResourcesPakFilePath("ui_resources_standard.pak"),
|
| ResourceHandle::kScaleFactor100x);
|
| }
|
| }
|
|
|