| 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) 2006 Michael Emmel mike.emmel@gmail.com | 5 * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com |
| 6 * Copyright (C) 2007 Holger Hans Peter Freyther | 6 * Copyright (C) 2007 Holger Hans Peter Freyther |
| 7 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 7 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 8 * Copyright (C) 2008, 2009 Google, Inc. | 8 * Copyright (C) 2008, 2009 Google, Inc. |
| 9 * All rights reserved. | 9 * All rights reserved. |
| 10 * Copyright (C) 2009 Kenneth Rohde Christiansen | 10 * Copyright (C) 2009 Kenneth Rohde Christiansen |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 // A method asking if the control changes its tint when the window has f
ocus or not. | 43 // A method asking if the control changes its tint when the window has f
ocus or not. |
| 44 virtual bool controlSupportsTints(const RenderObject*) const; | 44 virtual bool controlSupportsTints(const RenderObject*) const; |
| 45 | 45 |
| 46 // List Box selection color | 46 // List Box selection color |
| 47 virtual Color activeListBoxSelectionBackgroundColor() const; | 47 virtual Color activeListBoxSelectionBackgroundColor() const; |
| 48 virtual Color activeListBoxSelectionForegroundColor() const; | 48 virtual Color activeListBoxSelectionForegroundColor() const; |
| 49 virtual Color inactiveListBoxSelectionBackgroundColor() const; | 49 virtual Color inactiveListBoxSelectionBackgroundColor() const; |
| 50 virtual Color inactiveListBoxSelectionForegroundColor() const; | 50 virtual Color inactiveListBoxSelectionForegroundColor() const; |
| 51 | 51 |
| 52 void setCaretBlinkInterval(double interval); |
| 53 virtual double caretBlinkInterval() const; |
| 54 |
| 52 private: | 55 private: |
| 53 RenderThemeChromiumLinux(); | 56 RenderThemeChromiumLinux(); |
| 54 virtual ~RenderThemeChromiumLinux(); | 57 virtual ~RenderThemeChromiumLinux(); |
| 55 | 58 |
| 56 // A general method asking if any control tinting is supported at all. | 59 // A general method asking if any control tinting is supported at all. |
| 57 virtual bool supportsControlTints() const; | 60 virtual bool supportsControlTints() const; |
| 61 |
| 62 double m_caretBlinkInterval; |
| 58 }; | 63 }; |
| 59 | 64 |
| 60 } // namespace WebCore | 65 } // namespace WebCore |
| 61 | 66 |
| 62 #endif // RenderThemeChromiumLinux_h | 67 #endif // RenderThemeChromiumLinux_h |
| OLD | NEW |