| 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 |
| 11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
| 12 * | 12 * |
| 13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
| 17 * | 17 * |
| 18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
| 19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
| 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "core/layout/LayoutThemeDefault.h" | 25 #include "core/layout/LayoutThemeDefault.h" |
| 26 | 26 |
| 27 #include "core/CSSValueKeywords.h" | 27 #include "core/CSSValueKeywords.h" |
| 28 #include "core/layout/LayoutObject.h" | 28 #include "core/layout/LayoutObject.h" |
| 29 #include "core/layout/LayoutProgress.h" | |
| 30 #include "core/layout/LayoutThemeFontProvider.h" | 29 #include "core/layout/LayoutThemeFontProvider.h" |
| 31 #include "core/paint/MediaControlsPainter.h" | 30 #include "core/paint/MediaControlsPainter.h" |
| 32 #include "platform/LayoutTestSupport.h" | 31 #include "platform/LayoutTestSupport.h" |
| 33 #include "platform/PlatformResourceLoader.h" | 32 #include "platform/PlatformResourceLoader.h" |
| 34 #include "platform/graphics/Color.h" | 33 #include "platform/graphics/Color.h" |
| 35 #include "platform/scroll/ScrollbarTheme.h" | 34 #include "platform/scroll/ScrollbarTheme.h" |
| 36 #include "public/platform/Platform.h" | 35 #include "public/platform/Platform.h" |
| 37 #include "public/platform/WebThemeEngine.h" | 36 #include "public/platform/WebThemeEngine.h" |
| 38 | 37 |
| 39 namespace blink { | 38 namespace blink { |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 { | 419 { |
| 421 return progressAnimationInterval; | 420 return progressAnimationInterval; |
| 422 } | 421 } |
| 423 | 422 |
| 424 double LayoutThemeDefault::animationDurationForProgressBar() const | 423 double LayoutThemeDefault::animationDurationForProgressBar() const |
| 425 { | 424 { |
| 426 return progressAnimationInterval * progressAnimationFrames * 2; // "2" for b
ack and forth | 425 return progressAnimationInterval * progressAnimationFrames * 2; // "2" for b
ack and forth |
| 427 } | 426 } |
| 428 | 427 |
| 429 } // namespace blink | 428 } // namespace blink |
| OLD | NEW |