OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 5 #ifndef WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
6 #define WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 6 #define WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
11 #include "base/threading/thread_local_storage.h" | 11 #include "base/threading/thread_local_storage.h" |
12 #include "base/timer.h" | 12 #include "base/timer.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/Platform.h" | 13 #include "third_party/WebKit/public/platform/Platform.h" |
14 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLError.h" | 14 #include "third_party/WebKit/public/platform/WebURLError.h" |
15 #include "ui/base/layout.h" | 15 #include "ui/base/layout.h" |
16 #include "webkit/glue/resource_loader_bridge.h" | 16 #include "webkit/glue/resource_loader_bridge.h" |
17 #include "webkit/glue/webfallbackthemeengine_impl.h" | 17 #include "webkit/glue/webfallbackthemeengine_impl.h" |
18 #include "webkit/glue/webkit_glue_export.h" | 18 #include "webkit/glue/webkit_glue_export.h" |
19 | 19 |
20 #if defined(USE_DEFAULT_RENDER_THEME) | 20 #if defined(USE_DEFAULT_RENDER_THEME) |
21 #include "webkit/glue/webthemeengine_impl_default.h" | 21 #include "webkit/glue/webthemeengine_impl_default.h" |
22 #elif defined(OS_WIN) | 22 #elif defined(OS_WIN) |
23 #include "webkit/glue/webthemeengine_impl_win.h" | 23 #include "webkit/glue/webthemeengine_impl_win.h" |
24 #elif defined(OS_MACOSX) | 24 #elif defined(OS_MACOSX) |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 int shared_timer_suspended_; // counter | 190 int shared_timer_suspended_; // counter |
191 WebThemeEngineImpl native_theme_engine_; | 191 WebThemeEngineImpl native_theme_engine_; |
192 WebFallbackThemeEngineImpl fallback_theme_engine_; | 192 WebFallbackThemeEngineImpl fallback_theme_engine_; |
193 base::ThreadLocalStorage::Slot current_thread_slot_; | 193 base::ThreadLocalStorage::Slot current_thread_slot_; |
194 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; | 194 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; |
195 }; | 195 }; |
196 | 196 |
197 } // namespace webkit_glue | 197 } // namespace webkit_glue |
198 | 198 |
199 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 199 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
OLD | NEW |