OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the WebKit project. | 2 * This file is part of the WebKit project. |
3 * | 3 * |
4 * Copyright (C) 2006 Apple Computer, Inc. | 4 * Copyright (C) 2006 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 virtual double animationRepeatIntervalForProgressBar(RenderProgress*) const
OVERRIDE; | 83 virtual double animationRepeatIntervalForProgressBar(RenderProgress*) const
OVERRIDE; |
84 virtual double animationDurationForProgressBar(RenderProgress*) const OVERRI
DE; | 84 virtual double animationDurationForProgressBar(RenderProgress*) const OVERRI
DE; |
85 virtual void adjustProgressBarStyle(StyleResolver*, RenderStyle*, Element*)
const OVERRIDE; | 85 virtual void adjustProgressBarStyle(StyleResolver*, RenderStyle*, Element*)
const OVERRIDE; |
86 virtual bool paintProgressBar(RenderObject*, const PaintInfo&, const IntRect
&) OVERRIDE; | 86 virtual bool paintProgressBar(RenderObject*, const PaintInfo&, const IntRect
&) OVERRIDE; |
87 | 87 |
88 virtual bool shouldOpenPickerWithF4Key() const OVERRIDE; | 88 virtual bool shouldOpenPickerWithF4Key() const OVERRIDE; |
89 | 89 |
90 protected: | 90 protected: |
91 virtual double caretBlinkIntervalInternal() const OVERRIDE; | 91 virtual double caretBlinkIntervalInternal() const OVERRIDE; |
| 92 virtual bool shouldUseFallbackTheme(RenderStyle*) const OVERRIDE; |
92 | 93 |
93 private: | 94 private: |
94 enum ControlSubPart { | 95 enum ControlSubPart { |
95 None, | 96 None, |
96 SpinButtonDown, | 97 SpinButtonDown, |
97 SpinButtonUp, | 98 SpinButtonUp, |
98 }; | 99 }; |
99 | 100 |
100 RenderThemeChromiumWin() { } | 101 RenderThemeChromiumWin() { } |
101 virtual ~RenderThemeChromiumWin() { } | 102 virtual ~RenderThemeChromiumWin() { } |
102 | 103 |
103 unsigned determineState(RenderObject*, ControlSubPart = None); | 104 unsigned determineState(RenderObject*, ControlSubPart = None); |
104 unsigned determineSliderThumbState(RenderObject*); | 105 unsigned determineSliderThumbState(RenderObject*); |
105 unsigned determineClassicState(RenderObject*, ControlSubPart = None); | 106 unsigned determineClassicState(RenderObject*, ControlSubPart = None); |
106 | 107 |
107 ThemeData getThemeData(RenderObject*, ControlSubPart = None); | 108 ThemeData getThemeData(RenderObject*, ControlSubPart = None); |
108 | 109 |
109 bool paintTextFieldInternal(RenderObject*, const PaintInfo&, const IntRect&,
bool); | 110 bool paintTextFieldInternal(RenderObject*, const PaintInfo&, const IntRect&,
bool); |
110 }; | 111 }; |
111 | 112 |
112 } // namespace WebCore | 113 } // namespace WebCore |
113 | 114 |
114 #endif | 115 #endif |
OLD | NEW |