| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/platform_file.h" | 9 #include "base/platform_file.h" |
| 10 #include "base/threading/thread_local_storage.h" | 10 #include "base/threading/thread_local_storage.h" |
| 11 #include "base/timer.h" | 11 #include "base/timer.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKitPlatformSupport
.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebKitPlatfo
rmSupport.h" |
| 13 #include "webkit/glue/resource_loader_bridge.h" | 13 #include "webkit/glue/resource_loader_bridge.h" |
| 14 #include "webkit/glue/webkit_glue_export.h" | 14 #include "webkit/glue/webkit_glue_export.h" |
| 15 | 15 |
| 16 #if defined(OS_WIN) | 16 #if defined(OS_WIN) |
| 17 #include "webkit/glue/webthemeengine_impl_win.h" | 17 #include "webkit/glue/webthemeengine_impl_win.h" |
| 18 #elif defined(OS_MACOSX) | 18 #elif defined(OS_MACOSX) |
| 19 #include "webkit/glue/webthemeengine_impl_mac.h" | 19 #include "webkit/glue/webthemeengine_impl_mac.h" |
| 20 #elif defined(OS_POSIX) | 20 #elif defined(OS_POSIX) |
| 21 #include "webkit/glue/webthemeengine_impl_linux.h" | 21 #include "webkit/glue/webthemeengine_impl_linux.h" |
| 22 #endif | 22 #endif |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 void (*shared_timer_func_)(); | 136 void (*shared_timer_func_)(); |
| 137 double shared_timer_fire_time_; | 137 double shared_timer_fire_time_; |
| 138 int shared_timer_suspended_; // counter | 138 int shared_timer_suspended_; // counter |
| 139 WebThemeEngineImpl theme_engine_; | 139 WebThemeEngineImpl theme_engine_; |
| 140 base::ThreadLocalStorage::Slot current_thread_slot_; | 140 base::ThreadLocalStorage::Slot current_thread_slot_; |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 } // namespace webkit_glue | 143 } // namespace webkit_glue |
| 144 | 144 |
| 145 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 145 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
| OLD | NEW |