| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/base/resource/resource_bundle_win.h" | 5 #include "ui/base/resource/resource_bundle_win.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "ui/base/layout.h" | 10 #include "ui/base/layout.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 bool use_hidpi = false; | 42 bool use_hidpi = false; |
| 43 #if defined(ENABLE_HIDPI) | 43 #if defined(ENABLE_HIDPI) |
| 44 // If we're running in HiDPI mode at a scale larger than 150%, we switch | 44 // If we're running in HiDPI mode at a scale larger than 150%, we switch |
| 45 // to 2x resources for desktop layouts. | 45 // to 2x resources for desktop layouts. |
| 46 use_hidpi = ui::GetDPIScale() > 1.5; | 46 use_hidpi = ui::GetDPIScale() > 1.5; |
| 47 #endif | 47 #endif |
| 48 | 48 |
| 49 switch (ui::GetDisplayLayout()) { | 49 switch (ui::GetDisplayLayout()) { |
| 50 case ui::LAYOUT_TOUCH: | 50 case ui::LAYOUT_TOUCH: |
| 51 AddDataPackFromPath( | 51 AddDataPackFromPath( |
| 52 GetResourcesPakFilePath("chrome_touch_100_percent.pak"), | 52 GetResourcesPakFilePath("theme_resources_touch_100_percent.pak"), |
| 53 SCALE_FACTOR_100P); |
| 54 AddDataPackFromPath( |
| 55 GetResourcesPakFilePath("ui_resources_100_percent.pak"), |
| 53 SCALE_FACTOR_100P); | 56 SCALE_FACTOR_100P); |
| 54 break; | 57 break; |
| 55 default: | 58 default: |
| 56 if (use_hidpi) { | 59 if (use_hidpi) { |
| 57 AddDataPackFromPath(GetResourcesPakFilePath( | 60 AddDataPackFromPath(GetResourcesPakFilePath( |
| 58 "chrome_200_percent.pak"), | 61 "theme_resources_200_percent.pak"), |
| 62 SCALE_FACTOR_200P); |
| 63 AddDataPackFromPath(GetResourcesPakFilePath( |
| 64 "ui_resources_200_percent.pak"), |
| 59 SCALE_FACTOR_200P); | 65 SCALE_FACTOR_200P); |
| 60 AddDataPackFromPath(GetResourcesPakFilePath( | 66 AddDataPackFromPath(GetResourcesPakFilePath( |
| 61 "webkit_resources_200_percent.pak"), | 67 "webkit_resources_200_percent.pak"), |
| 62 SCALE_FACTOR_200P); | 68 SCALE_FACTOR_200P); |
| 63 } else { | 69 } else { |
| 64 AddDataPackFromPath( | 70 AddDataPackFromPath( |
| 65 GetResourcesPakFilePath("chrome_100_percent.pak"), | 71 GetResourcesPakFilePath("theme_resources_100_percent.pak"), |
| 72 SCALE_FACTOR_100P); |
| 73 AddDataPackFromPath( |
| 74 GetResourcesPakFilePath("ui_resources_100_percent.pak"), |
| 66 SCALE_FACTOR_100P); | 75 SCALE_FACTOR_100P); |
| 67 } | 76 } |
| 68 break; | 77 break; |
| 69 } | 78 } |
| 70 } | 79 } |
| 71 | 80 |
| 72 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) { | 81 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) { |
| 73 // Flipped image is not used on Windows. | 82 // Flipped image is not used on Windows. |
| 74 DCHECK_EQ(rtl, RTL_DISABLED); | 83 DCHECK_EQ(rtl, RTL_DISABLED); |
| 75 | 84 |
| 76 // Windows only uses SkBitmap for gfx::Image, so this is the same as | 85 // Windows only uses SkBitmap for gfx::Image, so this is the same as |
| 77 // GetImageNamed. | 86 // GetImageNamed. |
| 78 return GetImageNamed(resource_id); | 87 return GetImageNamed(resource_id); |
| 79 } | 88 } |
| 80 | 89 |
| 81 void SetResourcesDataDLL(HINSTANCE handle) { | 90 void SetResourcesDataDLL(HINSTANCE handle) { |
| 82 resources_data_dll = handle; | 91 resources_data_dll = handle; |
| 83 } | 92 } |
| 84 | 93 |
| 85 HICON LoadThemeIconFromResourcesDataDLL(int icon_id) { | 94 HICON LoadThemeIconFromResourcesDataDLL(int icon_id) { |
| 86 return ::LoadIcon(GetCurrentResourceDLL(), MAKEINTRESOURCE(icon_id)); | 95 return ::LoadIcon(GetCurrentResourceDLL(), MAKEINTRESOURCE(icon_id)); |
| 87 } | 96 } |
| 88 | 97 |
| 89 } // namespace ui; | 98 } // namespace ui; |
| OLD | NEW |