| 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 16 matching lines...) Expand all  Loading... | 
| 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 "HTMLNames.h" | 33 #include "HTMLNames.h" | 
| 34 #include "core/html/HTMLMediaElement.h" | 34 #include "core/html/HTMLMediaElement.h" | 
| 35 #include "core/html/shadow/MediaControlElements.h" | 35 #include "core/html/shadow/MediaControlElements.h" | 
| 36 #include "core/platform/ScrollbarTheme.h" | 36 #include "core/platform/ScrollbarTheme.h" | 
| 37 #include "core/platform/graphics/FontSelector.h" |  | 
| 38 #include "core/platform/graphics/GraphicsContext.h" | 37 #include "core/platform/graphics/GraphicsContext.h" | 
| 39 #include "core/platform/graphics/chromium/TransparencyWin.h" | 38 #include "core/platform/graphics/chromium/TransparencyWin.h" | 
| 40 #include "core/rendering/PaintInfo.h" | 39 #include "core/rendering/PaintInfo.h" | 
| 41 #include "core/rendering/RenderBox.h" | 40 #include "core/rendering/RenderBox.h" | 
| 42 #include "core/rendering/RenderProgress.h" | 41 #include "core/rendering/RenderProgress.h" | 
| 43 #include "core/rendering/RenderSlider.h" | 42 #include "core/rendering/RenderSlider.h" | 
| 44 #include "platform/LayoutTestSupport.h" | 43 #include "platform/LayoutTestSupport.h" | 
|  | 44 #include "platform/fonts/FontSelector.h" | 
| 45 #include "platform/win/SystemInfo.h" | 45 #include "platform/win/SystemInfo.h" | 
| 46 #include "public/platform/Platform.h" | 46 #include "public/platform/Platform.h" | 
| 47 #include "public/platform/WebColor.h" | 47 #include "public/platform/WebColor.h" | 
| 48 #include "public/platform/WebRect.h" | 48 #include "public/platform/WebRect.h" | 
| 49 #include "public/platform/win/WebThemeEngine.h" | 49 #include "public/platform/win/WebThemeEngine.h" | 
| 50 #include "wtf/CurrentTime.h" | 50 #include "wtf/CurrentTime.h" | 
| 51 | 51 | 
| 52 // FIXME: This dependency should eventually be removed. | 52 // FIXME: This dependency should eventually be removed. | 
| 53 #include <skia/ext/skia_utils_win.h> | 53 #include <skia/ext/skia_utils_win.h> | 
| 54 | 54 | 
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 650 | 650 | 
| 651 bool RenderThemeChromiumWin::shouldUseFallbackTheme(RenderStyle* style) const | 651 bool RenderThemeChromiumWin::shouldUseFallbackTheme(RenderStyle* style) const | 
| 652 { | 652 { | 
| 653     ControlPart part = style->appearance(); | 653     ControlPart part = style->appearance(); | 
| 654     if (part == CheckboxPart || part == RadioPart) | 654     if (part == CheckboxPart || part == RadioPart) | 
| 655         return style->effectiveZoom() != 1; | 655         return style->effectiveZoom() != 1; | 
| 656     return false; | 656     return false; | 
| 657 } | 657 } | 
| 658 | 658 | 
| 659 } // namespace WebCore | 659 } // namespace WebCore | 
| OLD | NEW | 
|---|