Fix the issue that Web Audio test case fails on PR3.
[framework/web/webkit-efl.git] / Source / WebCore / rendering / RenderThemeChromiumAndroid.cpp
1 /*
2  * Copyright (C) 2011 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1.  Redistributions of source code must retain the above copyright
9  *     notice, this list of conditions and the following disclaimer.
10  * 2.  Redistributions in binary form must reproduce the above copyright
11  *     notice, this list of conditions and the following disclaimer in the
12  *     documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "RenderThemeChromiumAndroid.h"
28
29 #include "CSSValueKeywords.h"
30 #include "Color.h"
31 #include "LayoutTestSupport.h"
32 #include "PaintInfo.h"
33 #include "PlatformSupport.h"
34 #include "RenderMediaControlsChromium.h"
35 #include "RenderObject.h"
36 #include "RenderProgress.h"
37 #include "RenderSlider.h"
38 #include "ScrollbarTheme.h"
39 #include "UserAgentStyleSheets.h"
40
41 namespace WebCore {
42
43 PassRefPtr<RenderTheme> RenderThemeChromiumAndroid::create()
44 {
45     return adoptRef(new RenderThemeChromiumAndroid());
46 }
47
48 PassRefPtr<RenderTheme> RenderTheme::themeForPage(Page* page)
49 {
50     static RenderTheme* renderTheme = RenderThemeChromiumAndroid::create().leakRef();
51     return renderTheme;
52 }
53
54 RenderThemeChromiumAndroid::~RenderThemeChromiumAndroid()
55 {
56 }
57
58 Color RenderThemeChromiumAndroid::systemColor(int cssValueId) const
59 {
60     if (isRunningLayoutTest() && cssValueId == CSSValueButtonface) {
61         // Match Chromium Linux' button color in layout tests.
62         static const Color linuxButtonGrayColor(0xffdddddd);
63         return linuxButtonGrayColor;
64     }
65     return RenderTheme::systemColor(cssValueId);
66 }
67
68 String RenderThemeChromiumAndroid::extraMediaControlsStyleSheet()
69 {
70     return String(mediaControlsChromiumAndroidUserAgentStyleSheet, sizeof(mediaControlsChromiumAndroidUserAgentStyleSheet));
71 }
72
73 String RenderThemeChromiumAndroid::extraDefaultStyleSheet()
74 {
75     return RenderThemeChromiumLinux::extraDefaultStyleSheet() +
76         String(themeChromiumAndroidUserAgentStyleSheet, sizeof(themeChromiumAndroidUserAgentStyleSheet));
77 }
78
79 void RenderThemeChromiumAndroid::adjustInnerSpinButtonStyle(StyleResolver*, RenderStyle* style, Element*) const
80 {
81     if (isRunningLayoutTest()) {
82         // Match Chromium Linux spin button style in layout tests.
83         // FIXME: Consider removing the conditional if a future Android theme matches this.
84         IntSize size = PlatformSupport::getThemePartSize(PlatformSupport::PartInnerSpinButton);
85
86         style->setWidth(Length(size.width(), Fixed));
87         style->setMinWidth(Length(size.width(), Fixed));
88     }
89 }
90
91 bool RenderThemeChromiumAndroid::paintMediaOverlayPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
92 {
93 #if ENABLE(VIDEO)
94     return RenderMediaControlsChromium::paintMediaControlsPart(MediaOverlayPlayButton, object, paintInfo, rect);
95 #else
96     UNUSED_PARAM(object);
97     UNUSED_PARAM(paintInfo);
98     UNUSED_PARAM(rect);
99     return false;
100 #endif
101 }
102
103 int RenderThemeChromiumAndroid::menuListArrowPadding() const
104 {
105     // We cannot use the scrollbar thickness here, as it's width is 0 on Android.
106     // Instead, use the width of the scrollbar down arrow.
107     IntSize scrollbarSize = PlatformSupport::getThemePartSize(PlatformSupport::PartScrollbarDownArrow);
108     return scrollbarSize.width();
109 }
110
111 } // namespace WebCore