1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/browser_theme_provider.h"
#include "base/gfx/png_decoder.h"
#include "base/string_util.h"
#include "base/values.h"
#include "chrome/browser/browser_list.h"
#include "chrome/browser/extensions/extension.h"
#include "chrome/browser/metrics/user_metrics.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/theme_resources_util.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
#include "grit/theme_resources.h"
#include "net/base/file_stream.h"
#include "net/base/net_errors.h"
#include "skia/ext/image_operations.h"
#include "skia/ext/skia_utils.h"
#include "third_party/skia/include/core/SkBitmap.h"
// Strings used by themes to identify colors for different parts of our UI.
static const char* kColorFrame = "frame";
static const char* kColorFrameInactive = "frame_inactive";
static const char* kColorFrameIncognito = "frame_incognito";
static const char* kColorFrameIncognitoInactive =
"frame_incognito_inactive";
static const char* kColorToolbar = "toolbar";
static const char* kColorTabText = "tab_text";
static const char* kColorBackgroundTabText = "background_tab_text";
static const char* kColorBookmarkText = "bookmark_text";
static const char* kColorNTPText = "ntp_text";
static const char* kColorNTPLink = "ntp_link";
static const char* kColorNTPSection = "ntp_section";
// Strings used by themes to identify tints to apply to different parts of
// our UI. The frame tints apply to the frame color and produce the
// COLOR_FRAME* colors.
static const char* kTintButtons = "buttons";
static const char* kTintFrame = "frame";
static const char* kTintFrameInactive = "frame_inactive";
static const char* kTintFrameIncognito = "frame_incognito";
static const char* kTintFrameIncognitoInactive =
"frame_incognito_inactive";
static const char* kTintBackgroundTab = "background_tab";
// Default colors.
static const SkColor kDefaultColorFrame = SkColorSetRGB(77, 139, 217);
static const SkColor kDefaultColorFrameInactive = SkColorSetRGB(152, 188, 233);
static const SkColor kDefaultColorFrameIncognito = SkColorSetRGB(83, 106, 139);
static const SkColor kDefaultColorFrameIncognitoInactive =
SkColorSetRGB(126, 139, 156);
static const SkColor kDefaultColorToolbar = SkColorSetRGB(210, 225, 246);
static const SkColor kDefaultColorTabText = SkColorSetRGB(0, 0, 0);
static const SkColor kDefaultColorBackgroundTabText = SkColorSetRGB(64, 64, 64);
static const SkColor kDefaultColorBookmarkText = SkColorSetRGB(64, 64, 64);
static const SkColor kDefaultColorNTPText = SkColorSetRGB(0, 0, 0);
static const SkColor kDefaultColorNTPLink = SkColorSetRGB(0, 0, 204);
static const SkColor kDefaultColorNTPSection = SkColorSetRGB(225, 236, 254);
// Default tints.
static const skia::HSL kDefaultTintButtons = { -1, -1, -1 };
static const skia::HSL kDefaultTintFrame = { -1, -1, -1 };
static const skia::HSL kDefaultTintFrameInactive = { -1, 0.5f, 0.72f };
static const skia::HSL kDefaultTintFrameIncognito = { -1, 0.2f, 0.35f };
static const skia::HSL kDefaultTintFrameIncognitoInactive = { -1, 0.3f, 0.6f };
static const skia::HSL kDefaultTintBackgroundTab = { -1, 0.5, 0.75 };
// The image resources that will be tinted by the 'button' tint value.
static const int kToolbarButtonIDs[] = {
IDR_BACK, IDR_BACK_D, IDR_BACK_H, IDR_BACK_P,
IDR_FORWARD, IDR_FORWARD_D, IDR_FORWARD_H, IDR_FORWARD_P,
IDR_RELOAD, IDR_RELOAD_H, IDR_RELOAD_P,
IDR_HOME, IDR_HOME_H, IDR_HOME_P,
IDR_STAR, IDR_STAR_D, IDR_STAR_H, IDR_STAR_P,
IDR_STARRED, IDR_STARRED_H, IDR_STARRED_P,
IDR_GO, IDR_GO_H, IDR_GO_P,
IDR_STOP, IDR_STOP_H, IDR_STOP_P,
IDR_MENU_PAGE, IDR_MENU_PAGE_RTL,
IDR_MENU_CHROME, IDR_MENU_CHROME_RTL,
IDR_MENU_DROPARROW,
IDR_THROBBER,
};
// A map for kToolbarButtonIDs.
static std::map<const int, bool> button_images_;
// A map of frame image IDs to the tints for those ids.
static std::map<const int, int> frame_tints_;
BrowserThemeProvider::BrowserThemeProvider()
: rb_(ResourceBundle::GetSharedInstance()) {
static bool initialized = false;
if (!initialized) {
for (size_t i = 0; i < sizeof(kToolbarButtonIDs); ++i) {
button_images_[kToolbarButtonIDs[i]] = true;
}
frame_tints_[IDR_THEME_FRAME] = TINT_FRAME;
frame_tints_[IDR_THEME_FRAME_INACTIVE] = TINT_FRAME_INACTIVE;
frame_tints_[IDR_THEME_FRAME_INCOGNITO] = TINT_FRAME_INCOGNITO;
frame_tints_[IDR_THEME_FRAME_INCOGNITO_INACTIVE] =
TINT_FRAME_INCOGNITO_INACTIVE;
}
}
BrowserThemeProvider::~BrowserThemeProvider() {
FreeImages();
#if defined(OS_LINUX)
// Free GdkPixbufs.
for (GdkPixbufMap::iterator i = gdk_pixbufs_.begin();
i != gdk_pixbufs_.end(); i++) {
g_object_unref(i->second);
}
gdk_pixbufs_.clear();
#endif
}
void BrowserThemeProvider::Init(Profile* profile) {
DCHECK(CalledOnValidThread());
profile_ = profile;
LoadThemePrefs();
}
SkBitmap* BrowserThemeProvider::GetBitmapNamed(int id) {
DCHECK(CalledOnValidThread());
// Check to see if we already have the Skia image in the cache.
ImageCache::const_iterator found = image_cache_.find(id);
if (found != image_cache_.end())
return found->second;
scoped_ptr<SkBitmap> result;
// Try to load the image from the extension.
result.reset(LoadThemeBitmap(id));
// If the extension doesn't provide the requested image, but has provided
// a custom frame, then we may be able to generate the image required.
if (!result.get())
result.reset(GenerateBitmap(id));
// If we still don't have an image, load it from resourcebundle.
if (!result.get())
result.reset(rb_.GetBitmapNamed(id));
if (result.get()) {
// If the requested image is part of the toolbar button set, and we have
// a provided tint for that set, tint it appropriately.
if (button_images_.count(id) && tints_.count(kTintButtons)) {
SkBitmap* tinted =
new SkBitmap(TintBitmap(*result.release(), TINT_BUTTONS));
result.reset(tinted);
}
// We loaded successfully. Cache the bitmap.
image_cache_[id] = result.get();
return result.release();
} else {
NOTREACHED() << "Failed to load a requested image";
return NULL;
}
}
SkColor BrowserThemeProvider::GetColor(int id) {
DCHECK(CalledOnValidThread());
// TODO(glen): Figure out if we need to tint these. http://crbug.com/11578
switch (id) {
case COLOR_FRAME:
return (colors_.find(kColorFrame) != colors_.end()) ?
colors_[kColorFrame] : kDefaultColorFrame;
case COLOR_FRAME_INACTIVE:
return (colors_.find(kColorFrameInactive) != colors_.end()) ?
colors_[kColorFrameInactive] : kDefaultColorFrameInactive;
case COLOR_FRAME_INCOGNITO:
return (colors_.find(kColorFrameIncognito) != colors_.end()) ?
colors_[kColorFrameIncognito] : kDefaultColorFrameIncognito;
case COLOR_FRAME_INCOGNITO_INACTIVE:
return (colors_.find(kColorFrameIncognitoInactive) != colors_.end()) ?
colors_[kColorFrameIncognitoInactive] :
kDefaultColorFrameIncognitoInactive;
case COLOR_TOOLBAR:
return (colors_.find(kColorToolbar) != colors_.end()) ?
colors_[kColorToolbar] : kDefaultColorToolbar;
case COLOR_TAB_TEXT:
return (colors_.find(kColorTabText) != colors_.end()) ?
colors_[kColorTabText] : kDefaultColorTabText;
case COLOR_BACKGROUND_TAB_TEXT:
return (colors_.find(kColorBackgroundTabText) != colors_.end()) ?
colors_[kColorBackgroundTabText] :
kDefaultColorBackgroundTabText;
case COLOR_BOOKMARK_TEXT:
return (colors_.find(kColorBookmarkText) != colors_.end()) ?
colors_[kColorBookmarkText] :
kDefaultColorBookmarkText;
case COLOR_NTP_TEXT:
return (colors_.find(kColorNTPText) != colors_.end()) ?
colors_[kColorNTPText] :
kDefaultColorNTPText;
case COLOR_NTP_LINK:
return (colors_.find(kColorNTPLink) != colors_.end()) ?
colors_[kColorNTPLink] :
kDefaultColorNTPLink;
case COLOR_NTP_SECTION:
return (colors_.find(kColorNTPSection) != colors_.end()) ?
colors_[kColorNTPSection] :
kDefaultColorNTPSection;
default:
NOTREACHED() << "Unknown color requested";
}
// Return a debugging red color.
return 0xffff0000;
}
void BrowserThemeProvider::SetTheme(Extension* extension) {
// Clear our image cache.
FreeImages();
DCHECK(extension);
DCHECK(extension->IsTheme());
SetImageData(extension->GetThemeImages(),
extension->path());
SetColorData(extension->GetThemeColors());
SetTintData(extension->GetThemeTints());
GenerateFrameColors();
GenerateFrameImages();
SaveImageData(extension->GetThemeImages());
SaveColorData();
SaveTintData();
NotifyThemeChanged();
UserMetrics::RecordAction(L"Themes_Installed", profile_);
}
void BrowserThemeProvider::UseDefaultTheme() {
// Clear our image cache.
FreeImages();
images_.clear();
colors_.clear();
tints_.clear();
SaveImageData(NULL);
SaveColorData();
SaveTintData();
NotifyThemeChanged();
}
SkBitmap* BrowserThemeProvider::LoadThemeBitmap(int id) {
DCHECK(CalledOnValidThread());
// Attempt to find the image in our theme bundle.
std::vector<unsigned char> raw_data, png_data;
if (images_.count(id)) {
// First check to see if we have a registered theme extension and whether
// it can handle this resource.
#if defined(OS_WIN)
FilePath path = FilePath(UTF8ToWide(images_[id]));
#else
FilePath path = FilePath(images_[id]);
#endif
if (!path.empty()) {
net::FileStream file;
int flags = base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ;
if (file.Open(path, flags) == net::OK) {
int64 avail = file.Available();
if (avail > 0 && avail < INT_MAX) {
size_t size = static_cast<size_t>(avail);
raw_data.resize(size);
char* data = reinterpret_cast<char*>(&(raw_data.front()));
if (file.ReadUntilComplete(data, size) == avail) {
// Decode the PNG.
int image_width = 0;
int image_height = 0;
if (!PNGDecoder::Decode(&raw_data.front(), raw_data.size(),
PNGDecoder::FORMAT_BGRA, &png_data,
&image_width, &image_height)) {
NOTREACHED() << "Unable to decode theme image resource " << id;
return NULL;
}
return PNGDecoder::CreateSkBitmapFromBGRAFormat(png_data,
image_width,
image_height);
}
}
} else {
// TODO(glen): File no-longer exists, we're out of date. We should
// clear the theme (or maybe just the pref that points to this
// image).
return NULL;
}
}
}
return NULL;
}
skia::HSL BrowserThemeProvider::GetTint(int id) {
DCHECK(CalledOnValidThread());
switch (id) {
case TINT_FRAME:
return (tints_.find(kTintFrame) != tints_.end()) ?
tints_[kTintFrame] : kDefaultTintFrame;
case TINT_FRAME_INACTIVE:
return (tints_.find(kTintFrameInactive) != tints_.end()) ?
tints_[kTintFrameInactive] : kDefaultTintFrameInactive;
case TINT_FRAME_INCOGNITO:
return (tints_.count(kTintFrameIncognito)) ?
tints_[kTintFrameIncognito] : kDefaultTintFrameIncognito;
case TINT_FRAME_INCOGNITO_INACTIVE:
return (tints_.count(kTintFrameIncognitoInactive)) ?
tints_[kTintFrameIncognitoInactive] :
kDefaultTintFrameIncognitoInactive;
case TINT_BUTTONS:
return (tints_.find(kTintButtons) != tints_.end()) ?
tints_[kTintButtons] :
kDefaultTintButtons;
case TINT_BACKGROUND_TAB:
return (tints_.find(kTintBackgroundTab) != tints_.end()) ?
tints_[kTintBackgroundTab] :
kDefaultTintBackgroundTab;
default:
NOTREACHED() << "Unknown tint requested";
}
skia::HSL result = {-1, -1, -1};
return result;
}
SkBitmap BrowserThemeProvider::TintBitmap(const SkBitmap& bitmap, int hsl_id) {
return skia::ImageOperations::CreateHSLShiftedBitmap(bitmap, GetTint(hsl_id));
}
void BrowserThemeProvider::SetImageData(DictionaryValue* images_value,
FilePath images_path) {
images_.clear();
if (images_value) {
DictionaryValue::key_iterator iter = images_value->begin_keys();
while (iter != images_value->end_keys()) {
std::string val;
if (images_value->GetString(*iter, &val)) {
int id = ThemeResourcesUtil::GetId(WideToUTF8(*iter));
if (id != -1) {
if (!images_path.empty()) {
images_[id] = WideToUTF8(images_path.AppendASCII(val)
.ToWStringHack());
} else {
images_[id] = val;
}
}
}
++iter;
}
}
}
void BrowserThemeProvider::SetColorData(DictionaryValue* colors_value) {
colors_.clear();
if (colors_value) {
DictionaryValue::key_iterator iter = colors_value->begin_keys();
while (iter != colors_value->end_keys()) {
ListValue* color_list;
if (colors_value->GetList(*iter, &color_list) &&
color_list->GetSize() == 3) {
int r, g, b;
color_list->GetInteger(0, &r);
color_list->GetInteger(1, &g);
color_list->GetInteger(2, &b);
colors_[WideToUTF8(*iter)] = SkColorSetRGB(r, g, b);
}
++iter;
}
}
}
void BrowserThemeProvider::SetTintData(DictionaryValue* tints_value) {
tints_.clear();
if (tints_value) {
DictionaryValue::key_iterator iter = tints_value->begin_keys();
while (iter != tints_value->end_keys()) {
ListValue* tint_list;
if (tints_value->GetList(*iter, &tint_list) &&
tint_list->GetSize() == 3) {
skia::HSL hsl = { -1, -1, -1 };
// TODO(glen): Make this work with integer values.
tint_list->GetReal(0, &hsl.h);
tint_list->GetReal(1, &hsl.s);
tint_list->GetReal(2, &hsl.l);
tints_[WideToUTF8(*iter)] = hsl;
}
++iter;
}
}
}
void BrowserThemeProvider::GenerateFrameColors() {
// Generate any secondary frame colors that weren't provided.
skia::HSL frame_hsl = { 0, 0, 0 };
skia::SkColorToHSL(GetColor(COLOR_FRAME), frame_hsl);
if (colors_.find(kColorFrame) == colors_.end())
colors_[kColorFrame] = HSLShift(frame_hsl, GetTint(TINT_FRAME));
if (colors_.find(kColorFrameInactive) == colors_.end()) {
colors_[kColorFrameInactive] =
HSLShift(frame_hsl, GetTint(TINT_FRAME_INACTIVE));
}
if (colors_.find(kColorFrameIncognito) == colors_.end()) {
colors_[kColorFrameIncognito] =
HSLShift(frame_hsl, GetTint(TINT_FRAME_INCOGNITO));
}
if (colors_.find(kColorFrameIncognitoInactive) == colors_.end()) {
colors_[kColorFrameIncognitoInactive] =
HSLShift(frame_hsl, GetTint(TINT_FRAME_INCOGNITO_INACTIVE));
}
}
void BrowserThemeProvider::GenerateFrameImages() {
std::map<const int, int>::iterator iter = frame_tints_.begin();
while (iter != frame_tints_.end()) {
int id = iter->first;
SkBitmap* frame;
// If there's no frame image provided for the specified id, then load
// the default provided frame. If that's not provided, skip this whole
// thing and just use the default images.
int base_id = (id == IDR_THEME_FRAME_INCOGNITO ||
id == IDR_THEME_FRAME_INCOGNITO_INACTIVE) ?
IDR_THEME_FRAME_INCOGNITO : IDR_THEME_FRAME;
if (images_.find(id) != images_.end()) {
frame = LoadThemeBitmap(id);
} else if (base_id != id && images_.find(base_id) != images_.end()) {
frame = LoadThemeBitmap(base_id);
} else {
// If the theme doesn't specify an image, then apply the tint to
// the default frame. Note that the default theme provides default
// bitmaps for all frame types, so this isn't strictly necessary
// in the case where no tint is provided either.
frame = rb_.GetBitmapNamed(IDR_THEME_FRAME);
}
if (frame) {
SkBitmap* tinted = new SkBitmap(TintBitmap(*frame, iter->second));
image_cache_[id] = tinted;
}
++iter;
}
}
SkBitmap* BrowserThemeProvider::GenerateBitmap(int id) {
if (id == IDR_THEME_TAB_BACKGROUND ||
id == IDR_THEME_TAB_BACKGROUND_INCOGNITO) {
// The requested image is a background tab. Get a frame to create the
// tab against. As themes don't use the glass frame, we don't have to
// worry about compositing them together, as our default theme provides
// the necessary bitmaps.
int base_id = (id == IDR_THEME_TAB_BACKGROUND) ?
IDR_THEME_FRAME : IDR_THEME_FRAME_INCOGNITO;
std::map<int, SkBitmap*>::iterator it = image_cache_.find(base_id);
if (it != image_cache_.end()) {
SkBitmap* frame = it->second;
SkBitmap blurred =
skia::ImageOperations::CreateBlurredBitmap(*frame, 5);
SkBitmap* bg_tab =
new SkBitmap(TintBitmap(blurred, TINT_BACKGROUND_TAB));
generated_images_.push_back(bg_tab);
return bg_tab;
}
}
return NULL;
}
void BrowserThemeProvider::NotifyThemeChanged() {
// TODO(glen): If we're in glass and IDR_THEME_FRAME has been provided,
// swap us back to opaque frame.
// Redraw!
for (BrowserList::const_iterator browser = BrowserList::begin();
browser != BrowserList::end(); ++browser) {
(*browser)->window()->UserChangedTheme();
}
}
void BrowserThemeProvider::LoadThemePrefs() {
PrefService* prefs = profile_->GetPrefs();
// TODO(glen): Figure out if any custom prefs were loaded, and if so
// UMA-log the fact that a theme was loaded.
if (prefs->HasPrefPath(prefs::kCurrentThemeImages) ||
prefs->HasPrefPath(prefs::kCurrentThemeColors) ||
prefs->HasPrefPath(prefs::kCurrentThemeTints)) {
// Our prefs already have the extension path baked in, so we don't need
// to provide it.
SetImageData(prefs->GetMutableDictionary(prefs::kCurrentThemeImages),
FilePath());
SetColorData(prefs->GetMutableDictionary(prefs::kCurrentThemeColors));
SetTintData(prefs->GetMutableDictionary(prefs::kCurrentThemeTints));
GenerateFrameColors();
GenerateFrameImages();
UserMetrics::RecordAction(L"Themes_loaded", profile_);
}
}
void BrowserThemeProvider::SaveImageData(DictionaryValue* images_value) {
// Save our images data.
DictionaryValue* pref_images =
profile_->GetPrefs()->GetMutableDictionary(prefs::kCurrentThemeImages);
pref_images->Clear();
if (images_value) {
DictionaryValue::key_iterator iter = images_value->begin_keys();
while (iter != images_value->end_keys()) {
std::string val;
if (images_value->GetString(*iter, &val)) {
int id = ThemeResourcesUtil::GetId(WideToUTF8(*iter));
if (id != -1)
pref_images->SetString(*iter, images_[id]);
}
++iter;
}
}
}
void BrowserThemeProvider::SaveColorData() {
// Save our color data.
DictionaryValue* pref_colors =
profile_->GetPrefs()->GetMutableDictionary(prefs::kCurrentThemeColors);
pref_colors->Clear();
if (colors_.size()) {
ColorMap::iterator iter = colors_.begin();
while (iter != colors_.end()) {
SkColor rgb = (*iter).second;
ListValue* rgb_list = new ListValue();
rgb_list->Set(0, Value::CreateIntegerValue(SkColorGetR(rgb)));
rgb_list->Set(1, Value::CreateIntegerValue(SkColorGetG(rgb)));
rgb_list->Set(2, Value::CreateIntegerValue(SkColorGetB(rgb)));
pref_colors->Set(UTF8ToWide((*iter).first), rgb_list);
++iter;
}
}
}
void BrowserThemeProvider::SaveTintData() {
// Save our tint data.
DictionaryValue* pref_tints =
profile_->GetPrefs()->GetMutableDictionary(prefs::kCurrentThemeTints);
pref_tints->Clear();
if (tints_.size()) {
TintMap::iterator iter = tints_.begin();
while (iter != tints_.end()) {
skia::HSL hsl = (*iter).second;
ListValue* hsl_list = new ListValue();
hsl_list->Set(0, Value::CreateRealValue(hsl.h));
hsl_list->Set(1, Value::CreateRealValue(hsl.s));
hsl_list->Set(2, Value::CreateRealValue(hsl.l));
pref_tints->Set(UTF8ToWide((*iter).first), hsl_list);
++iter;
}
}
}
void BrowserThemeProvider::FreeImages() {
for (std::vector<SkBitmap*>::iterator i = generated_images_.begin();
i != generated_images_.end(); i++) {
delete *i;
}
generated_images_.clear();
image_cache_.clear();
}
|