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

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

Issue 10825111: Repack separate 100 / 200 / touch_100 / touch_200 files into single pak files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 months 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 | « chrome/tools/build/win/FILES.cfg ('k') | ui/base/resource/resource_bundle_aurax11.cc » ('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 <string> 7 #include <string>
8 8
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/stringprintf.h" 13 #include "base/stringprintf.h"
14 #include "ui/base/ui_base_paths.h" 14 #include "ui/base/ui_base_paths.h"
15 #include "ui/base/resource/resource_handle.h" 15 #include "ui/base/resource/resource_handle.h"
16 16
17 namespace ui { 17 namespace ui {
18 18
19 void ResourceBundle::LoadCommonResources() { 19 void ResourceBundle::LoadCommonResources() {
20 FilePath path; 20 FilePath path;
21 PathService::Get(ui::DIR_RESOURCE_PAKS_ANDROID, &path); 21 PathService::Get(ui::DIR_RESOURCE_PAKS_ANDROID, &path);
22 AddDataPackFromPath(path.AppendASCII("chrome.pak"), 22 AddDataPackFromPath(path.AppendASCII("chrome.pak"),
23 SCALE_FACTOR_100P); 23 SCALE_FACTOR_100P);
24 AddDataPackFromPath(path.AppendASCII("theme_resources_100_percent.pak"), 24 AddDataPackFromPath(path.AppendASCII("chrome_100_percent.pak"),
25 SCALE_FACTOR_100P);
26 AddDataPackFromPath(path.AppendASCII("ui_resources_100_percent.pak"),
27 SCALE_FACTOR_100P); 25 SCALE_FACTOR_100P);
28 } 26 }
29 27
30 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) { 28 gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id, ImageRTL rtl) {
31 // Flipped image is not used on Android. 29 // Flipped image is not used on Android.
32 DCHECK_EQ(rtl, RTL_DISABLED); 30 DCHECK_EQ(rtl, RTL_DISABLED);
33 return GetImageNamed(resource_id); 31 return GetImageNamed(resource_id);
34 } 32 }
35 33
36 } 34 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | ui/base/resource/resource_bundle_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698