| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. | 2 * Copyright (C) 2007 Apple Inc. |
| 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 4 * Copyright (C) 2008 Collabora Ltd. | 4 * Copyright (C) 2008 Collabora Ltd. |
| 5 * Copyright (C) 2008, 2009 Google Inc. | 5 * Copyright (C) 2008, 2009 Google Inc. |
| 6 * Copyright (C) 2009 Kenneth Rohde Christiansen | 6 * Copyright (C) 2009 Kenneth Rohde Christiansen |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 Color RenderThemeChromiumLinux::inactiveListBoxSelectionForegroundColor() const | 89 Color RenderThemeChromiumLinux::inactiveListBoxSelectionForegroundColor() const |
| 90 { | 90 { |
| 91 return Color(0x32, 0x32, 0x32); | 91 return Color(0x32, 0x32, 0x32); |
| 92 } | 92 } |
| 93 | 93 |
| 94 bool RenderThemeChromiumLinux::supportsControlTints() const | 94 bool RenderThemeChromiumLinux::supportsControlTints() const |
| 95 { | 95 { |
| 96 return true; | 96 return true; |
| 97 } | 97 } |
| 98 | 98 |
| 99 void RenderThemeChromiumLinux::setCaretBlinkInterval(double interval) |
| 100 { |
| 101 m_caretBlinkInterval = interval; |
| 102 } |
| 103 |
| 104 double RenderThemeChromiumLinux::caretBlinkInterval() const |
| 105 { |
| 106 return m_caretBlinkInterval; |
| 107 } |
| 108 |
| 99 } // namespace WebCore | 109 } // namespace WebCore |
| OLD | NEW |