| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. | 2 * Copyright (C) 2007 Apple Inc. |
| 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 4 * Copyright (C) 2008 Collabora Ltd. | 4 * Copyright (C) 2008 Collabora Ltd. |
| 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 |
| 11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
| 12 * | 12 * |
| 13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
| 17 * | 17 * |
| 18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
| 19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
| 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 #include "core/rendering/RenderThemeChromiumDefault.h" | 26 #include "core/rendering/RenderThemeChromiumDefault.h" |
| 27 | 27 |
| 28 #include "CSSValueKeywords.h" | 28 #include "CSSValueKeywords.h" |
| 29 #include "UserAgentStyleSheets.h" | 29 #include "UserAgentStyleSheets.h" |
| 30 #include "core/platform/ScrollbarTheme.h" | |
| 31 #include "core/platform/graphics/Color.h" | 30 #include "core/platform/graphics/Color.h" |
| 32 #include "core/platform/graphics/GraphicsContext.h" | 31 #include "core/platform/graphics/GraphicsContext.h" |
| 33 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 32 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
| 34 #include "core/rendering/PaintInfo.h" | 33 #include "core/rendering/PaintInfo.h" |
| 35 #include "core/rendering/RenderObject.h" | 34 #include "core/rendering/RenderObject.h" |
| 36 #include "core/rendering/RenderProgress.h" | 35 #include "core/rendering/RenderProgress.h" |
| 37 #include "core/rendering/RenderSlider.h" | |
| 38 #include <public/default/WebThemeEngine.h> | 36 #include <public/default/WebThemeEngine.h> |
| 39 #include <public/Platform.h> | 37 #include <public/Platform.h> |
| 40 #include <public/WebRect.h> | 38 #include <public/WebRect.h> |
| 41 | 39 |
| 42 namespace WebCore { | 40 namespace WebCore { |
| 43 | 41 |
| 44 unsigned RenderThemeChromiumDefault::m_activeSelectionBackgroundColor = | 42 unsigned RenderThemeChromiumDefault::m_activeSelectionBackgroundColor = |
| 45 0xff1e90ff; | 43 0xff1e90ff; |
| 46 unsigned RenderThemeChromiumDefault::m_activeSelectionForegroundColor = | 44 unsigned RenderThemeChromiumDefault::m_activeSelectionForegroundColor = |
| 47 Color::black; | 45 Color::black; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 WebKit::Platform::current()->themeEngine()->paint(canvas, WebKit::WebThemeEn
gine::PartProgressBar, getWebThemeState(this, o), WebKit::WebRect(rect), &extraP
arams); | 416 WebKit::Platform::current()->themeEngine()->paint(canvas, WebKit::WebThemeEn
gine::PartProgressBar, getWebThemeState(this, o), WebKit::WebRect(rect), &extraP
arams); |
| 419 return false; | 417 return false; |
| 420 } | 418 } |
| 421 | 419 |
| 422 bool RenderThemeChromiumDefault::shouldOpenPickerWithF4Key() const | 420 bool RenderThemeChromiumDefault::shouldOpenPickerWithF4Key() const |
| 423 { | 421 { |
| 424 return true; | 422 return true; |
| 425 } | 423 } |
| 426 | 424 |
| 427 } // namespace WebCore | 425 } // namespace WebCore |
| OLD | NEW |