OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the WebKit project. | 2 * This file is part of the WebKit project. |
3 * | 3 * |
4 * Copyright (C) 2006 Apple Computer, Inc. | 4 * Copyright (C) 2006 Apple Computer, Inc. |
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 |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "config.h" | 25 #include "config.h" |
26 #include "RenderThemeChromiumWin.h" | 26 #include "RenderThemeChromiumWin.h" |
27 | 27 |
28 #include <windows.h> | 28 #include <windows.h> |
29 #include <uxtheme.h> | 29 #include <uxtheme.h> |
30 #include <vssym32.h> | 30 #include <vssym32.h> |
31 | 31 |
32 #include "CSSValueKeywords.h" | 32 #include "CSSValueKeywords.h" |
33 #include "HTMLMediaElement.h" | 33 #include "HTMLMediaElement.h" |
34 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
35 #include "LayoutTestSupport.h" | |
36 #include "MediaControlElements.h" | 35 #include "MediaControlElements.h" |
37 #include "PaintInfo.h" | 36 #include "PaintInfo.h" |
38 #include "PlatformContextSkia.h" | 37 #include "PlatformContextSkia.h" |
39 #include "RenderBox.h" | 38 #include "RenderBox.h" |
40 #include "RenderProgress.h" | 39 #include "RenderProgress.h" |
41 #include "RenderSlider.h" | 40 #include "RenderSlider.h" |
42 #include "RenderThemeChromiumCommon.h" | 41 #include "RenderThemeChromiumCommon.h" |
43 #include "ScrollbarTheme.h" | |
44 #include "SystemInfo.h" | 42 #include "SystemInfo.h" |
| 43 #include "core/platform/LayoutTestSupport.h" |
| 44 #include "core/platform/ScrollbarTheme.h" |
45 #include "core/platform/graphics/FontSelector.h" | 45 #include "core/platform/graphics/FontSelector.h" |
46 #include "core/platform/graphics/GraphicsContext.h" | 46 #include "core/platform/graphics/GraphicsContext.h" |
47 #include "core/platform/graphics/chromium/FontUtilsChromiumWin.h" | 47 #include "core/platform/graphics/chromium/FontUtilsChromiumWin.h" |
48 #include "core/platform/graphics/chromium/TransparencyWin.h" | 48 #include "core/platform/graphics/chromium/TransparencyWin.h" |
49 #include <public/Platform.h> | 49 #include <public/Platform.h> |
50 #include <public/WebColor.h> | 50 #include <public/WebColor.h> |
51 #include <public/WebRect.h> | 51 #include <public/WebRect.h> |
52 #include <public/win/WebThemeEngine.h> | 52 #include <public/win/WebThemeEngine.h> |
53 #include <wtf/CurrentTime.h> | 53 #include <wtf/CurrentTime.h> |
54 | 54 |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
655 WebKit::Platform::current()->themeEngine()->paintProgressBar(canvas, WebKit:
:WebRect(r), WebKit::WebRect(valueRect), renderProgress->isDeterminate(), animat
edSeconds); | 655 WebKit::Platform::current()->themeEngine()->paintProgressBar(canvas, WebKit:
:WebRect(r), WebKit::WebRect(valueRect), renderProgress->isDeterminate(), animat
edSeconds); |
656 return false; | 656 return false; |
657 } | 657 } |
658 | 658 |
659 bool RenderThemeChromiumWin::shouldOpenPickerWithF4Key() const | 659 bool RenderThemeChromiumWin::shouldOpenPickerWithF4Key() const |
660 { | 660 { |
661 return true; | 661 return true; |
662 } | 662 } |
663 | 663 |
664 } // namespace WebCore | 664 } // namespace WebCore |
OLD | NEW |