| Index: chrome/browser/chrome_browser_main.cc
|
| diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
|
| index d7021483ce58a773e48fe6be9f9b901337d8e2ec..2f20ba28c25f96ccb574f1086d3127977097baae 100644
|
| --- a/chrome/browser/chrome_browser_main.cc
|
| +++ b/chrome/browser/chrome_browser_main.cc
|
| @@ -122,6 +122,7 @@
|
| #include "net/websockets/websocket_job.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| +#include "ui/base/resource/resource_handle.h"
|
|
|
| #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
| #include "chrome/browser/first_run/upgrade_util_linux.h"
|
| @@ -1265,7 +1266,8 @@ int ChromeBrowserMainParts::PreCreateThreadsImpl() {
|
|
|
| FilePath resources_pack_path;
|
| PathService::Get(chrome::FILE_RESOURCES_PACK, &resources_pack_path);
|
| - ResourceBundle::GetSharedInstance().AddDataPack(resources_pack_path);
|
| + ResourceBundle::GetSharedInstance().AddDataPack(
|
| + resources_pack_path, ui::ResourceHandle::kScaleFactor1x);
|
| #endif // defined(OS_MACOSX)
|
| }
|
|
|
|
|