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

Side by Side Diff: chrome/browser/themes/theme_service.cc

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/themes/theme_service.h" 5 #include "chrome/browser/themes/theme_service.h"
6 6
7 #include "base/string_split.h" 7 #include "base/string_split.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "chrome/browser/extensions/extension_service.h" 10 #include "chrome/browser/extensions/extension_service.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/themes/browser_theme_pack.h" 12 #include "chrome/browser/themes/browser_theme_pack.h"
13 #include "chrome/common/chrome_constants.h" 13 #include "chrome/common/chrome_constants.h"
14 #include "chrome/common/chrome_notification_types.h" 14 #include "chrome/common/chrome_notification_types.h"
15 #include "chrome/common/pref_names.h" 15 #include "chrome/common/pref_names.h"
16 #include "content/browser/user_metrics.h" 16 #include "content/browser/user_metrics.h"
17 #include "content/public/browser/notification_service.h" 17 #include "content/public/browser/notification_service.h"
18 #include "grit/theme_resources.h" 18 #include "grit/theme_resources.h"
19 #include "grit/theme_resources_standard.h" 19 #include "grit/theme_resources_standard.h"
20 #include "grit/ui_resources.h" 20 #include "grit/ui_resources.h"
21 #include "ui/base/resource/resource_bundle.h" 21 #include "ui/base/resource/resource_bundle.h"
22 22
23 #if defined(OS_WIN) && !defined(USE_AURA) 23 #if defined(OS_WIN) && !defined(USE_AURA)
24 #include "views/widget/native_widget_win.h" 24 #include "views/widget/native_widget_win.h"
25 #endif 25 #endif
26 26
27 using content::BrowserThread;
28
27 // Strings used in alignment properties. 29 // Strings used in alignment properties.
28 const char* ThemeService::kAlignmentTop = "top"; 30 const char* ThemeService::kAlignmentTop = "top";
29 const char* ThemeService::kAlignmentBottom = "bottom"; 31 const char* ThemeService::kAlignmentBottom = "bottom";
30 const char* ThemeService::kAlignmentLeft = "left"; 32 const char* ThemeService::kAlignmentLeft = "left";
31 const char* ThemeService::kAlignmentRight = "right"; 33 const char* ThemeService::kAlignmentRight = "right";
32 34
33 // Strings used in background tiling repetition properties. 35 // Strings used in background tiling repetition properties.
34 const char* ThemeService::kTilingNoRepeat = "no-repeat"; 36 const char* ThemeService::kTilingNoRepeat = "no-repeat";
35 const char* ThemeService::kTilingRepeatX = "repeat-x"; 37 const char* ThemeService::kTilingRepeatX = "repeat-x";
36 const char* ThemeService::kTilingRepeatY = "repeat-y"; 38 const char* ThemeService::kTilingRepeatY = "repeat-y";
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 void ThemeService::OnInfobarDisplayed() { 657 void ThemeService::OnInfobarDisplayed() {
656 number_of_infobars_++; 658 number_of_infobars_++;
657 } 659 }
658 660
659 void ThemeService::OnInfobarDestroyed() { 661 void ThemeService::OnInfobarDestroyed() {
660 number_of_infobars_--; 662 number_of_infobars_--;
661 663
662 if (number_of_infobars_ == 0) 664 if (number_of_infobars_ == 0)
663 RemoveUnusedThemes(); 665 RemoveUnusedThemes();
664 } 666 }
OLDNEW
« no previous file with comments | « chrome/browser/themes/browser_theme_pack_unittest.cc ('k') | chrome/browser/translate/translate_manager_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698