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" |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 base::OneShotTimer<WebKitPlatformSupportImpl> shared_timer_; | 146 base::OneShotTimer<WebKitPlatformSupportImpl> shared_timer_; |
147 void (*shared_timer_func_)(); | 147 void (*shared_timer_func_)(); |
148 double shared_timer_fire_time_; | 148 double shared_timer_fire_time_; |
149 bool shared_timer_fire_time_was_set_while_suspended_; | 149 bool shared_timer_fire_time_was_set_while_suspended_; |
150 int shared_timer_suspended_; // counter | 150 int shared_timer_suspended_; // counter |
151 }; | 151 }; |
152 | 152 |
153 } // namespace webkit_glue | 153 } // namespace webkit_glue |
154 | 154 |
155 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ | 155 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ |
OLD | NEW |