Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: ui/base/resource/resource_bundle_gtk.cc

Issue 11301007: Load the resources for max scale factor first. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/base/resource/resource_bundle_aurax11.cc ('k') | ui/base/resource/resource_bundle_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.h" 5 #include "ui/base/resource/resource_bundle.h"
6 6
7 #include "base/i18n/rtl.h" 7 #include "base/i18n/rtl.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/ref_counted_memory.h" 9 #include "base/memory/ref_counted_memory.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 return path.AppendASCII(pak_name.c_str()); 59 return path.AppendASCII(pak_name.c_str());
60 60
61 // Return just the name of the pack file. 61 // Return just the name of the pack file.
62 return FilePath(pak_name.c_str()); 62 return FilePath(pak_name.c_str());
63 } 63 }
64 64
65 } // namespace 65 } // namespace
66 66
67 void ResourceBundle::LoadCommonResources() { 67 void ResourceBundle::LoadCommonResources() {
68 AddDataPackFromPath(GetResourcesPakFilePath("chrome.pak"), 68 AddDataPackFromPath(GetResourcesPakFilePath("chrome.pak"),
69 SCALE_FACTOR_100P); 69 SCALE_FACTOR_NONE);
70 AddDataPackFromPath(GetResourcesPakFilePath( 70 AddDataPackFromPath(GetResourcesPakFilePath(
71 "chrome_100_percent.pak"), 71 "chrome_100_percent.pak"),
72 SCALE_FACTOR_100P); 72 SCALE_FACTOR_100P);
73 } 73 }
74 74
75 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) { 75 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
76 // Use the negative |resource_id| for the key for BIDI-aware images. 76 // Use the negative |resource_id| for the key for BIDI-aware images.
77 int key = rtl == RTL_ENABLED ? -resource_id : resource_id; 77 int key = rtl == RTL_ENABLED ? -resource_id : resource_id;
78 78
79 // Check to see if the image is already in the cache. 79 // Check to see if the image is already in the cache.
(...skipping 25 matching lines...) Expand all
105 105
106 // Another thread raced the load and has already cached the image. 106 // Another thread raced the load and has already cached the image.
107 if (images_.count(key)) 107 if (images_.count(key))
108 return images_[key]; 108 return images_[key];
109 109
110 images_[key] = image; 110 images_[key] = image;
111 return images_[key]; 111 return images_[key];
112 } 112 }
113 113
114 } // namespace ui 114 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/resource/resource_bundle_aurax11.cc ('k') | ui/base/resource/resource_bundle_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698