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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutThemeDefault.cpp

Issue 2015583003: Remove assorted unnecessary includes in core/layout/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 * 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"
29 #include "core/layout/LayoutThemeFontProvider.h" 28 #include "core/layout/LayoutThemeFontProvider.h"
30 #include "core/paint/MediaControlsPainter.h" 29 #include "core/paint/MediaControlsPainter.h"
30 #include "core/style/ComputedStyle.h"
31 #include "platform/LayoutTestSupport.h" 31 #include "platform/LayoutTestSupport.h"
32 #include "platform/PlatformResourceLoader.h" 32 #include "platform/PlatformResourceLoader.h"
33 #include "platform/graphics/Color.h" 33 #include "platform/graphics/Color.h"
34 #include "platform/scroll/ScrollbarTheme.h"
35 #include "public/platform/Platform.h" 34 #include "public/platform/Platform.h"
36 #include "public/platform/WebThemeEngine.h" 35 #include "public/platform/WebThemeEngine.h"
36 #include "wtf/text/StringBuilder.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 enum PaddingType { 40 enum PaddingType {
41 TopPadding, 41 TopPadding,
42 RightPadding, 42 RightPadding,
43 BottomPadding, 43 BottomPadding,
44 LeftPadding 44 LeftPadding
45 }; 45 };
46 46
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 { 399 {
400 return progressAnimationInterval; 400 return progressAnimationInterval;
401 } 401 }
402 402
403 double LayoutThemeDefault::animationDurationForProgressBar() const 403 double LayoutThemeDefault::animationDurationForProgressBar() const
404 { 404 {
405 return progressAnimationInterval * progressAnimationFrames * 2; // "2" for b ack and forth 405 return progressAnimationInterval * progressAnimationFrames * 2; // "2" for b ack and forth
406 } 406 }
407 407
408 } // namespace blink 408 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTheme.h ('k') | third_party/WebKit/Source/core/layout/LayoutThemeMobile.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698