HomeSort by relevance Sort by last modified time
    Searched refs:theme_service (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/chrome/browser/ui/search/
search_ui.cc 8 #include "chrome/browser/themes/theme_service.h"
13 SkColor GetDetachedBookmarkBarBackgroundColor(ThemeService* theme_service) {
14 if (!theme_service->UsingDefaultTheme())
15 return theme_service->GetColor(ThemeProperties::COLOR_TOOLBAR);
19 SkColor GetDetachedBookmarkBarSeparatorColor(ThemeService* theme_service) {
20 if (theme_service->UsingDefaultTheme()) {
27 theme_service->GetColor(ThemeProperties::COLOR_BOOKMARK_TEXT), 128);
search_ui.h 15 SkColor GetDetachedBookmarkBarBackgroundColor(ThemeService* theme_service);
18 SkColor GetDetachedBookmarkBarSeparatorColor(ThemeService* theme_service);
  /external/chromium/chrome/browser/
renderer_preferences_util.cc 23 GtkThemeService* theme_service = GtkThemeService::GetFrom(profile); local
25 prefs->focus_ring_color = theme_service->get_focus_ring_color();
26 prefs->thumb_active_color = theme_service->get_thumb_active_color();
27 prefs->thumb_inactive_color = theme_service->get_thumb_inactive_color();
28 prefs->track_color = theme_service->get_track_color();
30 theme_service->get_active_selection_bg_color();
32 theme_service->get_active_selection_fg_color();
34 theme_service->get_inactive_selection_bg_color();
36 theme_service->get_inactive_selection_fg_color();
  /external/chromium_org/chrome/browser/themes/
theme_service_browsertest.cc 5 #include "chrome/browser/themes/theme_service.h"
21 bool UsingCustomTheme(const ThemeService& theme_service) {
22 return !theme_service.UsingNativeTheme() &&
23 !theme_service.UsingDefaultTheme();
48 ThemeService* theme_service = ThemeServiceFactory::GetForProfile(profile); local
51 EXPECT_FALSE(UsingCustomTheme(*theme_service));
52 EXPECT_NE(kThemeToolbarColor, theme_service->GetColor(
60 EXPECT_TRUE(UsingCustomTheme(*theme_service));
61 EXPECT_EQ(kThemeToolbarColor, theme_service->GetColor(
75 ThemeService* theme_service = ThemeServiceFactory::GetForProfile local
    [all...]
theme_service_unittest.cc 5 #include "chrome/browser/themes/theme_service.h"
54 const CustomThemeSupplier* get_theme_supplier(ThemeService* theme_service) {
55 return theme_service->get_theme_supplier();
71 ThemeService* theme_service = local
73 theme_service->UseDefaultTheme();
79 EXPECT_FALSE(theme_service->UsingDefaultTheme());
80 EXPECT_EQ(extension->id(), theme_service->GetThemeID());
85 EXPECT_TRUE(theme_service->UsingDefaultTheme());
93 ThemeService* theme_service = local
95 theme_service->UseDefaultTheme()
113 ThemeService* theme_service = local
126 ThemeService* theme_service = local
140 ThemeService* theme_service = local
    [all...]
theme_syncable_service.h 26 ThemeSyncableService(Profile* profile, // Same profile used by theme_service.
27 ThemeService* theme_service);
  /external/chromium/chrome/browser/extensions/
gtk_theme_installed_infobar_delegate.cc 7 #include "chrome/browser/themes/theme_service.h"
20 theme_service()->SetNativeTheme();
theme_installed_infobar_delegate.h 33 ThemeService* theme_service() { return theme_service_; } function in class:ThemeInstalledInfoBarDelegate
  /external/chromium_org/chrome/browser/
renderer_preferences_util.cc 89 GtkThemeService* theme_service = GtkThemeService::GetFrom(profile); local
90 prefs->focus_ring_color = theme_service->get_focus_ring_color();
91 prefs->thumb_active_color = theme_service->get_thumb_active_color();
92 prefs->thumb_inactive_color = theme_service->get_thumb_inactive_color();
93 prefs->track_color = theme_service->get_track_color();
95 theme_service->get_active_selection_bg_color();
97 theme_service->get_active_selection_fg_color();
99 theme_service->get_inactive_selection_bg_color();
101 theme_service->get_inactive_selection_fg_color();
  /external/chromium_org/chrome/browser/extensions/
theme_installed_infobar_delegate.cc 14 #include "chrome/browser/themes/theme_service.h"
49 ThemeService* theme_service = ThemeServiceFactory::GetForProfile(profile); local
51 infobar_service, profile->GetExtensionService(), theme_service, new_theme,
66 theme_service->OnInfobarDisplayed();
74 theme_service->OnInfobarDisplayed();
80 ThemeService* theme_service,
86 theme_service_(theme_service),
theme_installed_infobar_delegate.h 39 ThemeService* theme_service,
  /external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk_browsertest.cc 75 GtkThemeService* theme_service = GtkThemeService::GetFrom(GetProfile()); local
81 GtkWidget* label = theme_service->BuildLabel(kText, ui::kGdkBlack);
90 theme_service,
116 GtkThemeService* theme_service = GtkThemeService::GetFrom(GetProfile()); local
122 GtkWidget* label = theme_service->BuildLabel(kText, ui::kGdkBlack);
131 theme_service,
  /external/chromium_org/chrome/browser/ui/gtk/
overflow_button.cc 21 GtkThemeService* theme_service = GtkThemeService::GetFrom(profile); local
23 content::Source<ThemeService>(theme_service));
24 theme_service->InitThemesFor(this);
first_run_bubble.cc 46 GtkThemeService* theme_service = GtkThemeService::GetFrom(browser->profile()); local
47 GtkWidget* title = theme_service->BuildLabel(std::string(), ui::kGdkBlack);
56 GtkWidget* change = theme_service->BuildChromeLinkButton(
60 GtkWidget* subtext = theme_service->BuildLabel(
81 theme_service,
avatar_menu_item_gtk.h 37 GtkThemeService* theme_service);
69 // Create all widgets in this menu item, using |theme_service|.
70 void Init(GtkThemeService* theme_service);
global_error_bubble.cc 47 GtkThemeService* theme_service = local
55 GtkWidget* title_label = theme_service->BuildLabel(
60 message_labels_.push_back(theme_service->BuildLabel(
116 theme_service,
throbber_gtk.h 26 // |theme_service| must not be NULL.
27 explicit ThrobberGtk(GtkThemeService* theme_service);
confirm_bubble_gtk.cc 66 GtkThemeService* theme_service = GtkThemeService::GetFrom( local
79 GtkWidget* title_label = theme_service->BuildLabel(
84 close_button_.reset(CustomDrawButton::CloseButtonBubble(theme_service));
91 GtkWidget* message_label = theme_service->BuildLabel(
146 theme_service,
throbber_gtk.cc 22 ThrobberGtk::ThrobberGtk(GtkThemeService* theme_service)
23 : theme_service_(theme_service),
password_generation_bubble_gtk.cc 89 GtkThemeService* theme_service = GtkThemeService::GetFrom( local
99 theme_service,
  /external/chromium_org/chrome/browser/search/
instant_service.cc 23 #include "chrome/browser/themes/theme_service.h"
285 void InstantService::OnThemeChanged(ThemeService* theme_service) {
286 if (!theme_service) {
297 theme_info_->using_default_theme = theme_service->UsingDefaultTheme();
301 theme_service->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND);
303 theme_service->GetColor(ThemeProperties::COLOR_NTP_TEXT);
305 theme_service->GetColor(ThemeProperties::COLOR_NTP_LINK);
307 theme_service->GetColor(ThemeProperties::COLOR_NTP_TEXT_LIGHT);
309 theme_service->GetColor(ThemeProperties::COLOR_NTP_HEADER);
338 if (theme_service->GetDisplayProperty
    [all...]
instant_service.h 134 void OnThemeChanged(ThemeService* theme_service);
  /external/chromium_org/chrome/browser/ui/gtk/website_settings/
permission_selector.cc 40 PermissionSelector::PermissionSelector(GtkThemeService* theme_service,
68 GtkWidget* label = theme_service->BuildLabel(l10n_util::GetStringFUTF8(
77 menu_button_ = theme_service->BuildChromeButton();
81 GtkWidget* button_label = theme_service->BuildLabel(
94 if (theme_service->UsingNativeTheme()) {
permission_selector.h 32 PermissionSelector(GtkThemeService* theme_service,
  /external/chromium_org/chrome/browser/search_engines/
search_terms_data.cc 17 #include "chrome/browser/themes/theme_service.h"
179 ThemeService* theme_service = ThemeServiceFactory::GetForProfile(profile_);
180 if (theme_service && !theme_service->UsingDefaultTheme())

Completed in 351 milliseconds

1 2