| 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 CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 bool processMemorySizesInBytes(size_t* private_bytes, | 143 bool processMemorySizesInBytes(size_t* private_bytes, |
| 144 size_t* shared_bytes) override; | 144 size_t* shared_bytes) override; |
| 145 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 145 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 146 const blink::WebGraphicsContext3D::Attributes& attributes) override; | 146 const blink::WebGraphicsContext3D::Attributes& attributes) override; |
| 147 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 147 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 148 const blink::WebGraphicsContext3D::Attributes& attributes, | 148 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 149 blink::WebGraphicsContext3D* share_context) override; | 149 blink::WebGraphicsContext3D* share_context) override; |
| 150 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( | 150 blink::WebGraphicsContext3D* createOffscreenGraphicsContext3D( |
| 151 const blink::WebGraphicsContext3D::Attributes& attributes, | 151 const blink::WebGraphicsContext3D::Attributes& attributes, |
| 152 blink::WebGraphicsContext3D* share_context, | 152 blink::WebGraphicsContext3D* share_context, |
| 153 blink::WebGLInfo* gl_info) override; | 153 blink::WebGraphicsContext3D::WebGraphicsInfo* gl_info) override; |
| 154 blink::WebGraphicsContext3DProvider* | 154 blink::WebGraphicsContext3DProvider* |
| 155 createSharedOffscreenGraphicsContext3DProvider() override; | 155 createSharedOffscreenGraphicsContext3DProvider() override; |
| 156 blink::WebCompositorSupport* compositorSupport() override; | 156 blink::WebCompositorSupport* compositorSupport() override; |
| 157 blink::WebString convertIDNToUnicode( | 157 blink::WebString convertIDNToUnicode( |
| 158 const blink::WebString& host, | 158 const blink::WebString& host, |
| 159 const blink::WebString& languages) override; | 159 const blink::WebString& languages) override; |
| 160 void startListening(blink::WebPlatformEventType, | 160 void startListening(blink::WebPlatformEventType, |
| 161 blink::WebPlatformEventListener*) override; | 161 blink::WebPlatformEventListener*) override; |
| 162 void stopListening(blink::WebPlatformEventType) override; | 162 void stopListening(blink::WebPlatformEventType) override; |
| 163 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, | 163 void queryStorageUsageAndQuota(const blink::WebURL& storage_partition, |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 device::VibrationManagerPtr vibration_manager_; | 273 device::VibrationManagerPtr vibration_manager_; |
| 274 | 274 |
| 275 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 275 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 276 | 276 |
| 277 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 277 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 278 }; | 278 }; |
| 279 | 279 |
| 280 } // namespace content | 280 } // namespace content |
| 281 | 281 |
| 282 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 282 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |