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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 virtual long long databaseGetSpaceAvailableForOrigin( | 96 virtual long long databaseGetSpaceAvailableForOrigin( |
97 const blink::WebString& origin_identifier); | 97 const blink::WebString& origin_identifier); |
98 virtual bool databaseSetFileSize( | 98 virtual bool databaseSetFileSize( |
99 const blink::WebString& vfs_file_name, long long size); | 99 const blink::WebString& vfs_file_name, long long size); |
100 virtual blink::WebString signedPublicKeyAndChallengeString( | 100 virtual blink::WebString signedPublicKeyAndChallengeString( |
101 unsigned key_size_index, | 101 unsigned key_size_index, |
102 const blink::WebString& challenge, | 102 const blink::WebString& challenge, |
103 const blink::WebURL& url); | 103 const blink::WebURL& url); |
104 virtual void getPluginList(bool refresh, | 104 virtual void getPluginList(bool refresh, |
105 blink::WebPluginListBuilder* builder); | 105 blink::WebPluginListBuilder* builder); |
| 106 virtual void getGPUBlackList(blink::WebGPUBlackList* blacklist); |
106 virtual blink::WebPublicSuffixList* publicSuffixList(); | 107 virtual blink::WebPublicSuffixList* publicSuffixList(); |
107 virtual void screenColorProfile(blink::WebVector<char>* to_profile); | 108 virtual void screenColorProfile(blink::WebVector<char>* to_profile); |
108 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); | 109 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); |
109 virtual blink::WebIDBFactory* idbFactory(); | 110 virtual blink::WebIDBFactory* idbFactory(); |
110 virtual blink::WebServiceWorkerCacheStorage* cacheStorage( | 111 virtual blink::WebServiceWorkerCacheStorage* cacheStorage( |
111 const blink::WebString& origin_identifier); | 112 const blink::WebString& origin_identifier); |
112 virtual blink::WebFileSystem* fileSystem(); | 113 virtual blink::WebFileSystem* fileSystem(); |
113 virtual bool canAccelerate2dCanvas(); | 114 virtual bool canAccelerate2dCanvas(); |
114 virtual bool isThreadedCompositingEnabled(); | 115 virtual bool isThreadedCompositingEnabled(); |
115 virtual double audioHardwareSampleRate(); | 116 virtual double audioHardwareSampleRate(); |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 device::VibrationManagerPtr vibration_manager_; | 265 device::VibrationManagerPtr vibration_manager_; |
265 | 266 |
266 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 267 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
267 | 268 |
268 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 269 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
269 }; | 270 }; |
270 | 271 |
271 } // namespace content | 272 } // namespace content |
272 | 273 |
273 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 274 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |