| 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 17 matching lines...) Expand all Loading... |
| 28 #import "core/dom/Document.h" | 28 #import "core/dom/Document.h" |
| 29 #import "core/dom/Element.h" | 29 #import "core/dom/Element.h" |
| 30 #import "core/fileapi/FileList.h" | 30 #import "core/fileapi/FileList.h" |
| 31 #import "core/html/HTMLInputElement.h" | 31 #import "core/html/HTMLInputElement.h" |
| 32 #import "core/html/HTMLMediaElement.h" | 32 #import "core/html/HTMLMediaElement.h" |
| 33 #import "core/html/HTMLMeterElement.h" | 33 #import "core/html/HTMLMeterElement.h" |
| 34 #import "core/html/HTMLPlugInImageElement.h" | 34 #import "core/html/HTMLPlugInImageElement.h" |
| 35 #import "core/html/TimeRanges.h" | 35 #import "core/html/TimeRanges.h" |
| 36 #import "core/html/shadow/MediaControlElements.h" | 36 #import "core/html/shadow/MediaControlElements.h" |
| 37 #import "core/page/FrameView.h" | 37 #import "core/page/FrameView.h" |
| 38 #import "core/platform/LayoutTestSupport.h" | 38 #import "platform/LayoutTestSupport.h" |
| 39 #import "platform/LocalizedStrings.h" | 39 #import "platform/LocalizedStrings.h" |
| 40 #import "platform/SharedBuffer.h" | 40 #import "platform/SharedBuffer.h" |
| 41 #import "core/platform/graphics/BitmapImage.h" | 41 #import "core/platform/graphics/BitmapImage.h" |
| 42 #import "core/platform/graphics/GraphicsContextStateSaver.h" | 42 #import "core/platform/graphics/GraphicsContextStateSaver.h" |
| 43 #import "core/platform/graphics/Image.h" | 43 #import "core/platform/graphics/Image.h" |
| 44 #import "core/platform/graphics/ImageBuffer.h" | 44 #import "core/platform/graphics/ImageBuffer.h" |
| 45 #import "core/platform/graphics/StringTruncator.h" | 45 #import "core/platform/graphics/StringTruncator.h" |
| 46 #import "core/platform/graphics/cg/GraphicsContextCG.h" | 46 #import "core/platform/graphics/cg/GraphicsContextCG.h" |
| 47 #import "core/platform/graphics/mac/ColorMac.h" | 47 #import "core/platform/graphics/mac/ColorMac.h" |
| 48 #import "core/platform/mac/LocalCurrentGraphicsContext.h" | 48 #import "core/platform/mac/LocalCurrentGraphicsContext.h" |
| (...skipping 1969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2018 | 2018 |
| 2019 bool RenderThemeChromiumMac::shouldUseFallbackTheme(RenderStyle* style) const | 2019 bool RenderThemeChromiumMac::shouldUseFallbackTheme(RenderStyle* style) const |
| 2020 { | 2020 { |
| 2021 ControlPart part = style->appearance(); | 2021 ControlPart part = style->appearance(); |
| 2022 if (part == CheckboxPart || part == RadioPart) | 2022 if (part == CheckboxPart || part == RadioPart) |
| 2023 return style->effectiveZoom() != 1; | 2023 return style->effectiveZoom() != 1; |
| 2024 return false; | 2024 return false; |
| 2025 } | 2025 } |
| 2026 | 2026 |
| 2027 } // namespace WebCore | 2027 } // namespace WebCore |
| OLD | NEW |