HomeSort by relevance Sort by last modified time
    Searched defs:theme_service (Results 1 - 20 of 20) sorted by null

  /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/chrome/browser/extensions/
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/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...]
  /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,
password_generation_bubble_gtk.cc 89 GtkThemeService* theme_service = GtkThemeService::GetFrom( local
99 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,
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,
tab_modal_confirm_dialog_gtk.cc 61 GtkThemeService* theme_service = GtkThemeService::GetFrom( local
64 GtkWidget* link = theme_service->BuildChromeLinkButton(UTF16ToUTF8(
zoom_bubble_gtk.cc 93 GtkThemeService* theme_service = local
107 label_ = theme_service->BuildLabel(percentage_text, ui::kGdkBlack);
137 theme_service, NULL);
location_bar_view_gtk.cc 1093 GtkThemeService* theme_service = local
    [all...]
browser_window_gtk.cc 1261 GtkThemeService* theme_service = GtkThemeService::GetFrom( local
    [all...]
  /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),
extension_service.cc 67 #include "chrome/browser/themes/theme_service.h"
1169 ThemeService* theme_service = ThemeServiceFactory::GetForProfile(profile_); local
    [all...]
  /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/profile_resetter/
profile_resetter_unittest.cc 21 #include "chrome/browser/themes/theme_service.h"
462 ThemeService* theme_service = local
464 EXPECT_FALSE(theme_service->UsingDefaultTheme());
496 EXPECT_TRUE(theme_service->UsingDefaultTheme());
542 ThemeService* theme_service = local
544 EXPECT_FALSE(theme_service->UsingDefaultTheme());
569 EXPECT_TRUE(theme_service->UsingDefaultTheme());
  /external/chromium_org/chrome/browser/ui/gtk/website_settings/
website_settings_popup_gtk.cc 67 GtkThemeService* theme_service,
69 GtkWidget* label = theme_service->BuildLabel(text, color);
107 GtkThemeService* theme_service) {
113 GtkWidget* label = theme_service->BuildLabel(section_title, ui::kGdkBlack);
158 GtkThemeService* theme_service = GtkThemeService::GetFrom(profile); local
159 GtkWidget* label = theme_service->BuildLabel(
177 theme_service,
  /external/chromium_org/chrome/browser/ui/webui/options/
browser_options_handler.cc 57 #include "chrome/browser/themes/theme_service.h"
1323 ThemeService* theme_service = ThemeServiceFactory::GetForProfile(profile); local
    [all...]

Completed in 1552 milliseconds