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, |
(...skipping 15 matching lines...) Expand all Loading... |
26 #import "ColorMac.h" | 26 #import "ColorMac.h" |
27 #import "Document.h" | 27 #import "Document.h" |
28 #import "Element.h" | 28 #import "Element.h" |
29 #import "FileList.h" | 29 #import "FileList.h" |
30 #import "FrameView.h" | 30 #import "FrameView.h" |
31 #import "HTMLInputElement.h" | 31 #import "HTMLInputElement.h" |
32 #import "HTMLMediaElement.h" | 32 #import "HTMLMediaElement.h" |
33 #import "HTMLMeterElement.h" | 33 #import "HTMLMeterElement.h" |
34 #import "HTMLNames.h" | 34 #import "HTMLNames.h" |
35 #import "HTMLPlugInImageElement.h" | 35 #import "HTMLPlugInImageElement.h" |
36 #import "LayoutTestSupport.h" | |
37 #import "LocalCurrentGraphicsContext.h" | 36 #import "LocalCurrentGraphicsContext.h" |
38 #import "LocalizedStrings.h" | |
39 #import "MediaControlElements.h" | 37 #import "MediaControlElements.h" |
40 #import "PaintInfo.h" | 38 #import "PaintInfo.h" |
41 #import "RenderLayer.h" | 39 #import "RenderLayer.h" |
42 #import "RenderMedia.h" | 40 #import "RenderMedia.h" |
43 #import "RenderMediaControls.h" | 41 #import "RenderMediaControls.h" |
44 #import "RenderMediaControlsChromium.h" | 42 #import "RenderMediaControlsChromium.h" |
45 #import "RenderMeter.h" | 43 #import "RenderMeter.h" |
46 #import "RenderProgress.h" | 44 #import "RenderProgress.h" |
47 #import "RenderSlider.h" | 45 #import "RenderSlider.h" |
48 #import "RenderView.h" | 46 #import "RenderView.h" |
49 #import "SharedBuffer.h" | |
50 #import "StyleResolver.h" | 47 #import "StyleResolver.h" |
51 #import "ThemeMac.h" | 48 #import "ThemeMac.h" |
52 #import "TimeRanges.h" | 49 #import "TimeRanges.h" |
53 #import "UserAgentStyleSheets.h" | 50 #import "UserAgentStyleSheets.h" |
54 #import "WebCoreNSCellExtras.h" | 51 #import "WebCoreNSCellExtras.h" |
55 #import "WebCoreSystemInterface.h" | 52 #import "WebCoreSystemInterface.h" |
| 53 #import "core/platform/LayoutTestSupport.h" |
| 54 #import "core/platform/LocalizedStrings.h" |
| 55 #import "core/platform/SharedBuffer.h" |
56 #import "core/platform/graphics/BitmapImage.h" | 56 #import "core/platform/graphics/BitmapImage.h" |
57 #import "core/platform/graphics/Image.h" | 57 #import "core/platform/graphics/Image.h" |
58 #import "core/platform/graphics/ImageBuffer.h" | 58 #import "core/platform/graphics/ImageBuffer.h" |
59 #import "core/platform/graphics/StringTruncator.h" | 59 #import "core/platform/graphics/StringTruncator.h" |
60 #import "core/platform/graphics/cg/GraphicsContextCG.h" | 60 #import "core/platform/graphics/cg/GraphicsContextCG.h" |
61 | 61 |
62 #import <Carbon/Carbon.h> | 62 #import <Carbon/Carbon.h> |
63 #import <Cocoa/Cocoa.h> | 63 #import <Cocoa/Cocoa.h> |
64 #import <math.h> | 64 #import <math.h> |
65 #import <wtf/RetainPtr.h> | 65 #import <wtf/RetainPtr.h> |
(...skipping 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1975 { | 1975 { |
1976 return RenderMediaControlsChromium::paintMediaControlsPart(MediaEnterFullscr
eenButton, object, paintInfo, rect); | 1976 return RenderMediaControlsChromium::paintMediaControlsPart(MediaEnterFullscr
eenButton, object, paintInfo, rect); |
1977 } | 1977 } |
1978 | 1978 |
1979 bool RenderThemeChromiumMac::paintMediaToggleClosedCaptionsButton(RenderObject*
object, const PaintInfo& paintInfo, const IntRect& rect) | 1979 bool RenderThemeChromiumMac::paintMediaToggleClosedCaptionsButton(RenderObject*
object, const PaintInfo& paintInfo, const IntRect& rect) |
1980 { | 1980 { |
1981 return RenderMediaControlsChromium::paintMediaControlsPart(MediaShowClosedCa
ptionsButton, object, paintInfo, rect); | 1981 return RenderMediaControlsChromium::paintMediaControlsPart(MediaShowClosedCa
ptionsButton, object, paintInfo, rect); |
1982 } | 1982 } |
1983 | 1983 |
1984 } // namespace WebCore | 1984 } // namespace WebCore |
OLD | NEW |