| OLD | NEW |
| 1 // // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // // Copyright 2013 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_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ | 5 #ifndef WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ |
| 6 #define WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ | 6 #define WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/threading/thread_local_storage.h" | 8 #include "base/threading/thread_local_storage.h" |
| 9 #include "webkit/child/webfallbackthemeengine_impl.h" | 9 #include "webkit/child/webfallbackthemeengine_impl.h" |
| 10 #include "webkit/child/webkit_child_export.h" | 10 #include "webkit/child/webkit_child_export.h" |
| 11 #include "webkit/glue/webkitplatformsupport_impl.h" | 11 #include "webkit/child/webkitplatformsupport_impl.h" |
| 12 | 12 |
| 13 #if defined(USE_DEFAULT_RENDER_THEME) | 13 #if defined(USE_DEFAULT_RENDER_THEME) |
| 14 #include "webkit/child/webthemeengine_impl_default.h" | 14 #include "webkit/child/webthemeengine_impl_default.h" |
| 15 #elif defined(OS_WIN) | 15 #elif defined(OS_WIN) |
| 16 #include "webkit/child/webthemeengine_impl_win.h" | 16 #include "webkit/child/webthemeengine_impl_win.h" |
| 17 #elif defined(OS_MACOSX) | 17 #elif defined(OS_MACOSX) |
| 18 #include "webkit/child/webthemeengine_impl_mac.h" | 18 #include "webkit/child/webthemeengine_impl_mac.h" |
| 19 #elif defined(OS_ANDROID) | 19 #elif defined(OS_ANDROID) |
| 20 #include "webkit/child/webthemeengine_impl_android.h" | 20 #include "webkit/child/webthemeengine_impl_android.h" |
| 21 #endif | 21 #endif |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 WebThemeEngineImpl native_theme_engine_; | 60 WebThemeEngineImpl native_theme_engine_; |
| 61 WebFallbackThemeEngineImpl fallback_theme_engine_; | 61 WebFallbackThemeEngineImpl fallback_theme_engine_; |
| 62 base::ThreadLocalStorage::Slot current_thread_slot_; | 62 base::ThreadLocalStorage::Slot current_thread_slot_; |
| 63 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; | 63 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace webkit_glue | 66 } // namespace webkit_glue |
| 67 | 67 |
| 68 #endif // WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ | 68 #endif // WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ |
| OLD | NEW |