Chromium Code Reviews| 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 16 matching lines...) Expand all Loading... | |
| 27 | 27 |
| 28 namespace IPC { | 28 namespace IPC { |
| 29 class SyncMessageFilter; | 29 class SyncMessageFilter; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace blink { | 32 namespace blink { |
| 33 class WebBatteryStatus; | 33 class WebBatteryStatus; |
| 34 class WebDeviceMotionData; | 34 class WebDeviceMotionData; |
| 35 class WebDeviceOrientationData; | 35 class WebDeviceOrientationData; |
| 36 class WebGraphicsContext3DProvider; | 36 class WebGraphicsContext3DProvider; |
| 37 class WebServiceWorkerCacheStorage; | |
| 37 } | 38 } |
| 38 | 39 |
| 39 namespace content { | 40 namespace content { |
| 40 class BatteryStatusDispatcher; | 41 class BatteryStatusDispatcher; |
| 41 class DeviceLightEventPump; | 42 class DeviceLightEventPump; |
| 42 class DeviceMotionEventPump; | 43 class DeviceMotionEventPump; |
| 43 class DeviceOrientationEventPump; | 44 class DeviceOrientationEventPump; |
| 44 class PlatformEventObserverBase; | 45 class PlatformEventObserverBase; |
| 45 class QuotaMessageFilter; | 46 class QuotaMessageFilter; |
| 46 class RendererClipboardDelegate; | 47 class RendererClipboardDelegate; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 virtual blink::WebString signedPublicKeyAndChallengeString( | 95 virtual blink::WebString signedPublicKeyAndChallengeString( |
| 95 unsigned key_size_index, | 96 unsigned key_size_index, |
| 96 const blink::WebString& challenge, | 97 const blink::WebString& challenge, |
| 97 const blink::WebURL& url); | 98 const blink::WebURL& url); |
| 98 virtual void getPluginList(bool refresh, | 99 virtual void getPluginList(bool refresh, |
| 99 blink::WebPluginListBuilder* builder); | 100 blink::WebPluginListBuilder* builder); |
| 100 virtual blink::WebPublicSuffixList* publicSuffixList(); | 101 virtual blink::WebPublicSuffixList* publicSuffixList(); |
| 101 virtual void screenColorProfile(blink::WebVector<char>* to_profile); | 102 virtual void screenColorProfile(blink::WebVector<char>* to_profile); |
| 102 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); | 103 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); |
| 103 virtual blink::WebIDBFactory* idbFactory(); | 104 virtual blink::WebIDBFactory* idbFactory(); |
| 105 virtual blink::WebServiceWorkerCacheStorage* cacheStorage( | |
| 106 const blink::WebString& identifier); | |
|
michaeln
2015/03/24 23:57:34
'origin_identifier' for clarity?
jsbell
2015/03/25 16:27:39
Done.
| |
| 104 virtual blink::WebFileSystem* fileSystem(); | 107 virtual blink::WebFileSystem* fileSystem(); |
| 105 virtual bool canAccelerate2dCanvas(); | 108 virtual bool canAccelerate2dCanvas(); |
| 106 virtual bool isThreadedCompositingEnabled(); | 109 virtual bool isThreadedCompositingEnabled(); |
| 107 virtual double audioHardwareSampleRate(); | 110 virtual double audioHardwareSampleRate(); |
| 108 virtual size_t audioHardwareBufferSize(); | 111 virtual size_t audioHardwareBufferSize(); |
| 109 virtual unsigned audioHardwareOutputChannels(); | 112 virtual unsigned audioHardwareOutputChannels(); |
| 110 virtual blink::WebDatabaseObserver* databaseObserver(); | 113 virtual blink::WebDatabaseObserver* databaseObserver(); |
| 111 | 114 |
| 112 virtual blink::WebAudioDevice* createAudioDevice( | 115 virtual blink::WebAudioDevice* createAudioDevice( |
| 113 size_t buffer_size, unsigned input_channels, unsigned channels, | 116 size_t buffer_size, unsigned input_channels, unsigned channels, |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 256 device::VibrationManagerPtr vibration_manager_; | 259 device::VibrationManagerPtr vibration_manager_; |
| 257 | 260 |
| 258 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 261 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 259 | 262 |
| 260 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 263 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 261 }; | 264 }; |
| 262 | 265 |
| 263 } // namespace content | 266 } // namespace content |
| 264 | 267 |
| 265 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 268 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |