Searched defs:theme (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/ui/views/controls/menu/
H A Dmenu_config_mac.cc15 void MenuConfig::Init(const ui::NativeTheme* theme) { argument
20 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) { argument
22 MenuConfig, mac_instance, (theme ? theme : ui::NativeTheme::instance()));
H A Dmenu_config.cc11 MenuConfig::MenuConfig(const ui::NativeTheme* theme) argument
43 native_theme(theme),
46 Init(theme);
H A Dmenu_config_aura.cc26 void MenuConfig::Init(const ui::NativeTheme* theme) { argument
27 if (theme == ui::NativeThemeAura::instance())
28 InitAura(theme);
32 void MenuConfig::InitAura(const ui::NativeTheme* theme) { argument
53 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) { argument
56 views_instance = new MenuConfig(theme ?
57 theme : ui::NativeTheme::instance());
H A Dmenu_config_win.cc24 void MenuConfig::Init(const NativeTheme* theme) { argument
25 if (theme == ui::NativeThemeAura::instance()) {
26 InitAura(theme);
79 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) { argument
80 // NOTE: |theme| may be NULL if used before the menu is running.
81 if (!theme || theme == NativeThemeWin::instance()) {
89 views_instance = new MenuConfig(theme);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DOverscrollTheme.cpp68 OverscrollTheme* OverscrollTheme::theme() function in class:WebCore::OverscrollTheme
70 DEFINE_STATIC_LOCAL(OverscrollTheme, theme, ());
71 return &theme;
/external/chromium_org/chrome/browser/ui/webui/
H A Ddownloads_ui.cc115 ThemeSource* theme = new ThemeSource(profile); local
116 content::URLDataSource::Add(profile, theme);
H A Dtheme_handler.cc31 // Listen for theme installation.
50 ThemeSource* theme = new ThemeSource(profile); local
51 content::URLDataSource::Add(profile, theme);
H A Dversion_ui.cc148 // Set up the chrome://theme/ source.
149 ThemeSource* theme = new ThemeSource(profile); local
150 content::URLDataSource::Add(profile, theme);
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Duser_manager_ui.cc37 // Set up the chrome://theme/ source
38 ThemeSource* theme = new ThemeSource(profile); local
39 content::URLDataSource::Add(profile, theme);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DWeekPickerDialog.java28 * @param theme the theme to apply to this dialog
34 int theme,
39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue);
33 WeekPickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int weekOfYear, double minValue, double maxValue) argument
H A DTwoFieldDatePickerDialog.java53 * @param theme the theme to apply to this dialog
59 int theme,
65 super(context, theme);
58 TwoFieldDatePickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int positionInYear, double minValue, double maxValue) argument
H A DMultiFieldTimePickerDialog.java51 int theme,
55 super(context, theme);
49 MultiFieldTimePickerDialog( Context context, int theme, int hour, int minute, int second, int milli, int min, int max, int step, boolean is24hourFormat, OnMultiFieldTimeSetListener listener) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumAndroid.cpp51 RenderTheme& RenderTheme::theme() function in class:WebCore::RenderTheme
76 // FIXME: Consider removing the conditional if a future Android theme matches this.
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebScrollbarThemePainter.cpp119 WebScrollbarThemePainter::WebScrollbarThemePainter(WebCore::ScrollbarTheme* theme, WebCore::Scrollbar* scrollbar) argument
120 : m_theme(theme)
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dcontents_web_view.cc48 ui::ThemeProvider* const theme = GetThemeProvider(); member in class:ui
49 if (!theme)
58 theme->GetColor(ThemeProperties::COLOR_NTP_BACKGROUND);
/external/chromium_org/ui/views/controls/scrollbar/
H A Dnative_scroll_bar.cc33 const ui::NativeTheme* theme) {
34 return NativeScrollBarWrapper::GetHorizontalScrollBarHeight(theme);
39 const ui::NativeTheme* theme) {
40 return NativeScrollBarWrapper::GetVerticalScrollBarWidth(theme);
32 GetHorizontalScrollBarHeight( const ui::NativeTheme* theme) argument
38 GetVerticalScrollBarWidth( const ui::NativeTheme* theme) argument
/external/chromium_org/chrome/browser/extensions/
H A Dextension_install_ui_browsertest.cc38 // Checks that a theme info bar is currently visible and issues an undo to
39 // revert to the previous theme.
54 // Install the given theme from the data dir and verify expected name.
57 // If there is already a theme installed, the current theme should be
63 const Extension* theme = GetTheme(); local
64 ASSERT_TRUE(theme);
65 ASSERT_EQ(theme->name(), expected_name);
89 // Install theme once and undo to verify we go back to default theme
92 const Extension* theme = GetTheme(); local
121 const Extension* theme = GetTheme(); local
[all...]
/external/chromium_org/chrome/browser/ui/views/website_settings/
H A Dpermission_selector_view.cc53 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE;
90 void PermissionMenuButton::OnNativeThemeChanged(const ui::NativeTheme* theme) { argument
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSpinButtonElement.cpp219 ScrollbarTheme* theme = ScrollbarTheme::theme(); local
220 m_repeatingTimer.start(theme->initialAutoscrollTimerDelay(), theme->autoscrollTimerDelay(), FROM_HERE);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeGeometryNative.cpp38 PassOwnPtr<blink::WebScrollbarThemeGeometryNative> WebScrollbarThemeGeometryNative::create(WebCore::ScrollbarTheme* theme) argument
40 return adoptPtr(new WebScrollbarThemeGeometryNative(theme));
43 WebScrollbarThemeGeometryNative::WebScrollbarThemeGeometryNative(WebCore::ScrollbarTheme* theme) argument
44 : m_theme(theme)
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbar.h135 ScrollbarTheme* theme() const { return m_theme; } function in class:WebCore::Scrollbar
H A DScrollbarTheme.cpp336 ScrollbarTheme* ScrollbarTheme::theme() function in class:WebCore::ScrollbarTheme
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelBuilder.java121 int theme) {
124 switch(theme) {
119 addTileMapLayer(GameObject background, int priority, float scrollSpeed, int width, int height, int tileWidth, int tileHeight, TiledWorld world, int theme) argument
/external/chromium_org/ash/ime/
H A Dcandidate_view.cc47 const ui::NativeTheme& theme) {
62 shortcut_label->SetEnabledColor(theme.GetSystemColor(
64 shortcut_label->SetDisabledColor(theme.GetSystemColor(
82 theme.GetSystemColor(ui::NativeTheme::kColorId_WindowBackground),
119 const ui::NativeTheme& theme) {
126 annotation_label->SetEnabledColor(theme.GetSystemColor(
149 const ui::NativeTheme& theme = *GetNativeTheme(); local
150 shortcut_label_ = CreateShortcutLabel(orientation, theme);
152 annotation_label_ = CreateAnnotationLabel(orientation, theme);
161 views::Background::CreateSolidBackground(theme
45 CreateShortcutLabel( ui::CandidateWindow::Orientation orientation, const ui::NativeTheme& theme) argument
117 CreateAnnotationLabel( ui::CandidateWindow::Orientation orientation, const ui::NativeTheme& theme) argument
200 ui::NativeTheme* theme = GetNativeTheme(); local
[all...]
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_service_unittest.cc259 // Check that a supervised user can install a theme.
260 scoped_refptr<extensions::Extension> theme = MakeThemeExtension(); local
262 EXPECT_TRUE(supervised_user_service->UserMayLoad(theme.get(), &error_1));
265 supervised_user_service->UserMayModifySettings(theme.get(), &error_1));

Completed in 518 milliseconds

123