| 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" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 public: | 26 public: |
| 27 explicit PlatformImpl(mojo::ApplicationImpl* app); | 27 explicit PlatformImpl(mojo::ApplicationImpl* app); |
| 28 virtual ~PlatformImpl(); | 28 virtual ~PlatformImpl(); |
| 29 | 29 |
| 30 // blink::Platform methods: | 30 // blink::Platform methods: |
| 31 virtual blink::WebMimeRegistry* mimeRegistry(); | 31 virtual blink::WebMimeRegistry* mimeRegistry(); |
| 32 virtual blink::WebThemeEngine* themeEngine(); | 32 virtual blink::WebThemeEngine* themeEngine(); |
| 33 virtual blink::WebString defaultLocale(); | 33 virtual blink::WebString defaultLocale(); |
| 34 virtual double currentTime(); | 34 virtual double currentTime(); |
| 35 virtual double monotonicallyIncreasingTime(); | 35 virtual double monotonicallyIncreasingTime(); |
| 36 virtual void cryptographicallyRandomValues( | |
| 37 unsigned char* buffer, size_t length); | |
| 38 virtual void setSharedTimerFiredFunction(void (*func)()); | 36 virtual void setSharedTimerFiredFunction(void (*func)()); |
| 39 virtual void setSharedTimerFireInterval(double interval_seconds); | 37 virtual void setSharedTimerFireInterval(double interval_seconds); |
| 40 virtual void stopSharedTimer(); | 38 virtual void stopSharedTimer(); |
| 41 virtual void callOnMainThread(void (*func)(void*), void* context); | 39 virtual void callOnMainThread(void (*func)(void*), void* context); |
| 42 virtual base::SingleThreadTaskRunner* mainThreadTaskRunner(); | 40 virtual base::SingleThreadTaskRunner* mainThreadTaskRunner(); |
| 43 virtual bool isThreadedCompositingEnabled(); | 41 virtual bool isThreadedCompositingEnabled(); |
| 44 virtual blink::WebCompositorSupport* compositorSupport(); | 42 virtual blink::WebCompositorSupport* compositorSupport(); |
| 45 virtual mojo::NetworkService* networkService(); | 43 virtual mojo::NetworkService* networkService(); |
| 46 virtual blink::WebURLLoader* createURLLoader(); | 44 virtual blink::WebURLLoader* createURLLoader(); |
| 47 virtual blink::WebData parseDataURL( | 45 virtual blink::WebData parseDataURL( |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 WebThemeEngineImpl theme_engine_; | 97 WebThemeEngineImpl theme_engine_; |
| 100 WebMimeRegistryImpl mime_registry_; | 98 WebMimeRegistryImpl mime_registry_; |
| 101 blink::WebScrollbarBehavior scrollbar_behavior_; | 99 blink::WebScrollbarBehavior scrollbar_behavior_; |
| 102 | 100 |
| 103 DISALLOW_COPY_AND_ASSIGN(PlatformImpl); | 101 DISALLOW_COPY_AND_ASSIGN(PlatformImpl); |
| 104 }; | 102 }; |
| 105 | 103 |
| 106 } // namespace sky | 104 } // namespace sky |
| 107 | 105 |
| 108 #endif // SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ | 106 #endif // SKY_VIEWER_PLATFORM_PLATFORM_IMPL_H_ |
| OLD | NEW |