diff options
Diffstat (limited to 'ui/base/resource')
-rw-r--r-- | ui/base/resource/resource_bundle_mac.mm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/base/resource/resource_bundle_mac.mm b/ui/base/resource/resource_bundle_mac.mm index 6ad6b1a..2863e08 100644 --- a/ui/base/resource/resource_bundle_mac.mm +++ b/ui/base/resource/resource_bundle_mac.mm @@ -51,17 +51,12 @@ base::FilePath GetResourcesPakFilePath(NSString* name, NSString* mac_locale) { void ResourceBundle::LoadCommonResources() { AddDataPackFromPath(GetResourcesPakFilePath(@"chrome_100_percent", nil), SCALE_FACTOR_100P); - AddDataPackFromPath(GetResourcesPakFilePath(@"content_resources_100_percent", - nil), SCALE_FACTOR_100P); // On Mac we load 1x and 2x resources and we let the UI framework decide // which one to use. if (IsScaleFactorSupported(SCALE_FACTOR_200P)) { AddDataPackFromPath(GetResourcesPakFilePath(@"chrome_200_percent", nil), SCALE_FACTOR_200P); - AddDataPackFromPath( - GetResourcesPakFilePath(@"content_resources_200_percent", nil), - SCALE_FACTOR_200P); } } |