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 |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 #include "RenderThemeChromiumDefault.h" | 26 #include "RenderThemeChromiumDefault.h" |
27 | 27 |
28 #include "CSSValueKeywords.h" | 28 #include "CSSValueKeywords.h" |
29 #include "PaintInfo.h" | 29 #include "PaintInfo.h" |
30 #include "PlatformContextSkia.h" | 30 #include "PlatformContextSkia.h" |
31 #include "RenderObject.h" | 31 #include "RenderObject.h" |
32 #include "RenderProgress.h" | 32 #include "RenderProgress.h" |
33 #include "RenderSlider.h" | 33 #include "RenderSlider.h" |
34 #include "ScrollbarTheme.h" | |
35 #include "UserAgentStyleSheets.h" | 34 #include "UserAgentStyleSheets.h" |
| 35 #include "core/platform/ScrollbarTheme.h" |
36 #include "core/platform/graphics/Color.h" | 36 #include "core/platform/graphics/Color.h" |
37 #include <public/default/WebThemeEngine.h> | 37 #include <public/default/WebThemeEngine.h> |
38 #include <public/Platform.h> | 38 #include <public/Platform.h> |
39 #include <public/WebRect.h> | 39 #include <public/WebRect.h> |
40 | 40 |
41 namespace WebCore { | 41 namespace WebCore { |
42 | 42 |
43 unsigned RenderThemeChromiumDefault::m_activeSelectionBackgroundColor = | 43 unsigned RenderThemeChromiumDefault::m_activeSelectionBackgroundColor = |
44 0xff1e90ff; | 44 0xff1e90ff; |
45 unsigned RenderThemeChromiumDefault::m_activeSelectionForegroundColor = | 45 unsigned RenderThemeChromiumDefault::m_activeSelectionForegroundColor = |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 WebKit::Platform::current()->themeEngine()->paint(canvas, WebKit::WebThemeEn
gine::PartProgressBar, getWebThemeState(this, o), WebKit::WebRect(rect), &extraP
arams); | 379 WebKit::Platform::current()->themeEngine()->paint(canvas, WebKit::WebThemeEn
gine::PartProgressBar, getWebThemeState(this, o), WebKit::WebRect(rect), &extraP
arams); |
380 return false; | 380 return false; |
381 } | 381 } |
382 | 382 |
383 bool RenderThemeChromiumDefault::shouldOpenPickerWithF4Key() const | 383 bool RenderThemeChromiumDefault::shouldOpenPickerWithF4Key() const |
384 { | 384 { |
385 return true; | 385 return true; |
386 } | 386 } |
387 | 387 |
388 } // namespace WebCore | 388 } // namespace WebCore |
OLD | NEW |