OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008, 2009 Google, Inc. | 3 * Copyright (C) 2008, 2009 Google, Inc. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 #import "config.h" | 21 #import "config.h" |
22 #import "core/rendering/RenderThemeChromiumMac.h" | 22 #import "core/rendering/RenderThemeChromiumMac.h" |
23 | 23 |
24 #import "CSSValueKeywords.h" | 24 #import "CSSValueKeywords.h" |
25 #import "ColorMac.h" | 25 #import "ColorMac.h" |
26 #import "Document.h" | |
27 #import "Element.h" | |
28 #import "FileList.h" | 26 #import "FileList.h" |
29 #import "HTMLInputElement.h" | 27 #import "HTMLInputElement.h" |
30 #import "HTMLMediaElement.h" | 28 #import "HTMLMediaElement.h" |
31 #import "HTMLMeterElement.h" | 29 #import "HTMLMeterElement.h" |
32 #import "HTMLNames.h" | 30 #import "HTMLNames.h" |
33 #import "HTMLPlugInImageElement.h" | 31 #import "HTMLPlugInImageElement.h" |
34 #import "LocalCurrentGraphicsContext.h" | 32 #import "LocalCurrentGraphicsContext.h" |
35 #import "MediaControlElements.h" | 33 #import "MediaControlElements.h" |
36 #import "ThemeMac.h" | 34 #import "ThemeMac.h" |
37 #import "TimeRanges.h" | 35 #import "TimeRanges.h" |
38 #import "UserAgentStyleSheets.h" | 36 #import "UserAgentStyleSheets.h" |
39 #import "WebCoreNSCellExtras.h" | 37 #import "WebCoreNSCellExtras.h" |
40 #import "WebCoreSystemInterface.h" | 38 #import "WebCoreSystemInterface.h" |
41 #import "core/css/CSSValueList.h" | 39 #import "core/css/CSSValueList.h" |
42 #import "core/css/StyleResolver.h" | 40 #import "core/css/StyleResolver.h" |
| 41 #import "core/dom/Document.h" |
| 42 #import "core/dom/Element.h" |
43 #import "core/page/FrameView.h" | 43 #import "core/page/FrameView.h" |
44 #import "core/platform/LayoutTestSupport.h" | 44 #import "core/platform/LayoutTestSupport.h" |
45 #import "core/platform/LocalizedStrings.h" | 45 #import "core/platform/LocalizedStrings.h" |
46 #import "core/platform/SharedBuffer.h" | 46 #import "core/platform/SharedBuffer.h" |
47 #import "core/platform/graphics/BitmapImage.h" | 47 #import "core/platform/graphics/BitmapImage.h" |
48 #import "core/platform/graphics/Image.h" | 48 #import "core/platform/graphics/Image.h" |
49 #import "core/platform/graphics/ImageBuffer.h" | 49 #import "core/platform/graphics/ImageBuffer.h" |
50 #import "core/platform/graphics/StringTruncator.h" | 50 #import "core/platform/graphics/StringTruncator.h" |
51 #import "core/platform/graphics/cg/GraphicsContextCG.h" | 51 #import "core/platform/graphics/cg/GraphicsContextCG.h" |
52 #import "core/rendering/PaintInfo.h" | 52 #import "core/rendering/PaintInfo.h" |
(...skipping 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1969 { | 1969 { |
1970 return RenderMediaControlsChromium::paintMediaControlsPart(MediaEnterFullscr
eenButton, object, paintInfo, rect); | 1970 return RenderMediaControlsChromium::paintMediaControlsPart(MediaEnterFullscr
eenButton, object, paintInfo, rect); |
1971 } | 1971 } |
1972 | 1972 |
1973 bool RenderThemeChromiumMac::paintMediaToggleClosedCaptionsButton(RenderObject*
object, const PaintInfo& paintInfo, const IntRect& rect) | 1973 bool RenderThemeChromiumMac::paintMediaToggleClosedCaptionsButton(RenderObject*
object, const PaintInfo& paintInfo, const IntRect& rect) |
1974 { | 1974 { |
1975 return RenderMediaControlsChromium::paintMediaControlsPart(MediaShowClosedCa
ptionsButton, object, paintInfo, rect); | 1975 return RenderMediaControlsChromium::paintMediaControlsPart(MediaShowClosedCa
ptionsButton, object, paintInfo, rect); |
1976 } | 1976 } |
1977 | 1977 |
1978 } // namespace WebCore | 1978 } // namespace WebCore |
OLD | NEW |