Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Side by Side Diff: Source/core/rendering/RenderThemeChromiumWin.cpp

Issue 26113005: Remove core/platform/win (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 20 matching lines...) Expand all
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" 37 #include "core/platform/graphics/FontSelector.h"
38 #include "core/platform/graphics/GraphicsContext.h" 38 #include "core/platform/graphics/GraphicsContext.h"
39 #include "core/platform/graphics/chromium/FontUtilsChromiumWin.h" 39 #include "core/platform/graphics/chromium/FontUtilsChromiumWin.h"
40 #include "core/platform/graphics/chromium/TransparencyWin.h" 40 #include "core/platform/graphics/chromium/TransparencyWin.h"
41 #include "core/platform/win/SystemInfo.h"
42 #include "core/rendering/PaintInfo.h" 41 #include "core/rendering/PaintInfo.h"
43 #include "core/rendering/RenderBox.h" 42 #include "core/rendering/RenderBox.h"
44 #include "core/rendering/RenderProgress.h" 43 #include "core/rendering/RenderProgress.h"
45 #include "core/rendering/RenderSlider.h" 44 #include "core/rendering/RenderSlider.h"
46 #include "platform/LayoutTestSupport.h" 45 #include "platform/LayoutTestSupport.h"
46 #include "platform/win/SystemInfo.h"
47 #include "public/platform/Platform.h" 47 #include "public/platform/Platform.h"
48 #include "public/platform/WebColor.h" 48 #include "public/platform/WebColor.h"
49 #include "public/platform/WebRect.h" 49 #include "public/platform/WebRect.h"
50 #include "public/platform/win/WebThemeEngine.h" 50 #include "public/platform/win/WebThemeEngine.h"
51 #include "wtf/CurrentTime.h" 51 #include "wtf/CurrentTime.h"
52 52
53 // FIXME: This dependency should eventually be removed. 53 // FIXME: This dependency should eventually be removed.
54 #include <skia/ext/skia_utils_win.h> 54 #include <skia/ext/skia_utils_win.h>
55 55
56 namespace WebCore { 56 namespace WebCore {
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 655
656 bool RenderThemeChromiumWin::shouldUseFallbackTheme(RenderStyle* style) const 656 bool RenderThemeChromiumWin::shouldUseFallbackTheme(RenderStyle* style) const
657 { 657 {
658 ControlPart part = style->appearance(); 658 ControlPart part = style->appearance();
659 if (part == CheckboxPart || part == RadioPart) 659 if (part == CheckboxPart || part == RadioPart)
660 return style->effectiveZoom() != 1; 660 return style->effectiveZoom() != 1;
661 return false; 661 return false;
662 } 662 }
663 663
664 } // namespace WebCore 664 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderThemeChromiumFontProviderWin.cpp ('k') | Source/platform/blink_platform.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698