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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutThemeMac.h

Issue 2824753005: Rename HostWindow to PlatformChromeClient (Closed)
Patch Set: mac Created 3 years, 8 months 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
OLDNEW
1 /* 1 /*
2 * This file is part of the theme implementation for form controls in WebCore. 2 * This file is part of the theme implementation for form controls in WebCore.
3 * 3 *
4 * Copyright (C) 2005 Apple Computer, Inc. 4 * Copyright (C) 2005 Apple Computer, Inc.
5 * Copyright (C) 2008, 2009 Google, Inc. 5 * Copyright (C) 2008, 2009 Google, Inc.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 const AtomicString& family) const override; 69 const AtomicString& family) const override;
70 70
71 int MinimumMenuListSize(const ComputedStyle&) const override; 71 int MinimumMenuListSize(const ComputedStyle&) const override;
72 72
73 void AdjustSliderThumbSize(ComputedStyle&) const override; 73 void AdjustSliderThumbSize(ComputedStyle&) const override;
74 74
75 IntSize SliderTickSize() const override; 75 IntSize SliderTickSize() const override;
76 int SliderTickOffsetFromTrackCenter() const override; 76 int SliderTickOffsetFromTrackCenter() const override;
77 77
78 int PopupInternalPaddingStart(const ComputedStyle&) const override; 78 int PopupInternalPaddingStart(const ComputedStyle&) const override;
79 int PopupInternalPaddingEnd(const HostWindow*, 79 int PopupInternalPaddingEnd(const PlatformChromeClient*,
80 const ComputedStyle&) const override; 80 const ComputedStyle&) const override;
81 int PopupInternalPaddingTop(const ComputedStyle&) const override; 81 int PopupInternalPaddingTop(const ComputedStyle&) const override;
82 int PopupInternalPaddingBottom(const ComputedStyle&) const override; 82 int PopupInternalPaddingBottom(const ComputedStyle&) const override;
83 83
84 bool PopsMenuByArrowKeys() const override { return true; } 84 bool PopsMenuByArrowKeys() const override { return true; }
85 bool PopsMenuBySpaceKey() const final { return true; } 85 bool PopsMenuBySpaceKey() const final { return true; }
86 86
87 // Returns the repeat interval of the animation for the progress bar. 87 // Returns the repeat interval of the animation for the progress bar.
88 double AnimationRepeatIntervalForProgressBar() const override; 88 double AnimationRepeatIntervalForProgressBar() const override;
89 // Returns the duration of the animation for the progress bar. 89 // Returns the duration of the animation for the progress bar.
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 mutable HashMap<int, RGBA32> system_color_cache_; 200 mutable HashMap<int, RGBA32> system_color_cache_;
201 201
202 RetainPtr<BlinkLayoutThemeNotificationObserver> notification_observer_; 202 RetainPtr<BlinkLayoutThemeNotificationObserver> notification_observer_;
203 203
204 ThemePainterMac painter_; 204 ThemePainterMac painter_;
205 }; 205 };
206 206
207 } // namespace blink 207 } // namespace blink
208 208
209 #endif // LayoutThemeMac_h 209 #endif // LayoutThemeMac_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutThemeDefault.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutThemeMac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698