| 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 SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ | 5 #ifndef SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ |
| 6 #define SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ | 6 #define SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/threading/thread_local_storage.h" | 10 #include "base/threading/thread_local_storage.h" |
| 11 #include "base/timer/timer.h" | 11 #include "base/timer/timer.h" |
| 12 #include "mojo/services/public/interfaces/network/network_service.mojom.h" | 12 #include "mojo/services/network/public/interfaces/network_service.mojom.h" |
| 13 #include "sky/engine/public/platform/Platform.h" | 13 #include "sky/engine/public/platform/Platform.h" |
| 14 | 14 |
| 15 namespace mojo { | 15 namespace mojo { |
| 16 class ApplicationImpl; | 16 class ApplicationImpl; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace sky { | 19 namespace sky { |
| 20 | 20 |
| 21 class PlatformImpl : public blink::Platform { | 21 class PlatformImpl : public blink::Platform { |
| 22 public: | 22 public: |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 double shared_timer_fire_time_; | 82 double shared_timer_fire_time_; |
| 83 bool shared_timer_fire_time_was_set_while_suspended_; | 83 bool shared_timer_fire_time_was_set_while_suspended_; |
| 84 int shared_timer_suspended_; // counter | 84 int shared_timer_suspended_; // counter |
| 85 | 85 |
| 86 DISALLOW_COPY_AND_ASSIGN(PlatformImpl); | 86 DISALLOW_COPY_AND_ASSIGN(PlatformImpl); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace sky | 89 } // namespace sky |
| 90 | 90 |
| 91 #endif // SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ | 91 #endif // SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ |
| OLD | NEW |