OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_ | 5 #ifndef CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_ |
6 #define CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_ | 6 #define CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 #include "third_party/WebKit/public/platform/WebThemeEngine.h" | 11 #include "third_party/WebKit/public/platform/WebThemeEngine.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 class WebThemeEngineImpl : public blink::WebThemeEngine { | 15 class WebThemeEngineImpl : public blink::WebThemeEngine { |
16 public: | 16 public: |
17 // WebThemeEngine methods: | 17 // WebThemeEngine methods: |
18 blink::WebSize getSize(blink::WebThemeEngine::Part) override; | 18 blink::WebSize getSize(blink::WebThemeEngine::Part) override; |
19 void paint(blink::WebCanvas* canvas, | 19 void paint(blink::WebCanvas* canvas, |
20 blink::WebThemeEngine::Part part, | 20 blink::WebThemeEngine::Part part, |
21 blink::WebThemeEngine::State state, | 21 blink::WebThemeEngine::State state, |
22 const blink::WebRect& rect, | 22 const blink::WebRect& rect, |
23 const blink::WebThemeEngine::ExtraParams* extra_params) override; | 23 const blink::WebThemeEngine::ExtraParams* extra_params) override; |
24 virtual void paintStateTransition(blink::WebCanvas* canvas, | |
25 blink::WebThemeEngine::Part part, | |
26 blink::WebThemeEngine::State startState, | |
27 blink::WebThemeEngine::State endState, | |
28 double progress, | |
29 const blink::WebRect& rect); | |
30 #if defined(OS_WIN) | 24 #if defined(OS_WIN) |
31 // Caches the scrollbar metrics. These are retrieved in the browser and passed | 25 // Caches the scrollbar metrics. These are retrieved in the browser and passed |
32 // to the renderer in RendererPreferences because the required Windows system | 26 // to the renderer in RendererPreferences because the required Windows system |
33 // calls cannot be made in sandboxed renderers. | 27 // calls cannot be made in sandboxed renderers. |
34 static void cacheScrollBarMetrics(int32_t vertical_scroll_bar_width, | 28 static void cacheScrollBarMetrics(int32_t vertical_scroll_bar_width, |
35 int32_t horizontal_scroll_bar_height, | 29 int32_t horizontal_scroll_bar_height, |
36 int32_t vertical_arrow_bitmap_height, | 30 int32_t vertical_arrow_bitmap_height, |
37 int32_t horizontal_arrow_bitmap_width); | 31 int32_t horizontal_arrow_bitmap_width); |
38 #endif | 32 #endif |
39 }; | 33 }; |
40 | 34 |
41 } // namespace content | 35 } // namespace content |
42 | 36 |
43 #endif // CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_ | 37 #endif // CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_ |
OLD | NEW |