| 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_WEBKITPLATFORMSUPPORT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 virtual long databaseGetFileAttributes( | 86 virtual long databaseGetFileAttributes( |
| 87 const blink::WebString& vfs_file_name); | 87 const blink::WebString& vfs_file_name); |
| 88 virtual long long databaseGetFileSize( | 88 virtual long long databaseGetFileSize( |
| 89 const blink::WebString& vfs_file_name); | 89 const blink::WebString& vfs_file_name); |
| 90 virtual long long databaseGetSpaceAvailableForOrigin( | 90 virtual long long databaseGetSpaceAvailableForOrigin( |
| 91 const blink::WebString& origin_identifier); | 91 const blink::WebString& origin_identifier); |
| 92 virtual blink::WebString signedPublicKeyAndChallengeString( | 92 virtual blink::WebString signedPublicKeyAndChallengeString( |
| 93 unsigned key_size_index, | 93 unsigned key_size_index, |
| 94 const blink::WebString& challenge, | 94 const blink::WebString& challenge, |
| 95 const blink::WebURL& url); | 95 const blink::WebURL& url); |
| 96 virtual blink::WebContentDecryptionModule::KeySystemSupportedResult |
| 97 isKeySystemSupported(const blink::WebString& key_system, |
| 98 const blink::WebString& init_data_type, |
| 99 const blink::WebString& container, |
| 100 const blink::WebString& codecs, |
| 101 const blink::WebString& capability); |
| 96 virtual void getPluginList(bool refresh, | 102 virtual void getPluginList(bool refresh, |
| 97 blink::WebPluginListBuilder* builder); | 103 blink::WebPluginListBuilder* builder); |
| 98 virtual blink::WebPublicSuffixList* publicSuffixList(); | 104 virtual blink::WebPublicSuffixList* publicSuffixList(); |
| 99 virtual void screenColorProfile(blink::WebVector<char>* to_profile); | 105 virtual void screenColorProfile(blink::WebVector<char>* to_profile); |
| 100 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); | 106 virtual blink::WebScrollbarBehavior* scrollbarBehavior(); |
| 101 virtual blink::WebIDBFactory* idbFactory(); | 107 virtual blink::WebIDBFactory* idbFactory(); |
| 102 virtual blink::WebFileSystem* fileSystem(); | 108 virtual blink::WebFileSystem* fileSystem(); |
| 103 virtual bool canAccelerate2dCanvas(); | 109 virtual bool canAccelerate2dCanvas(); |
| 104 virtual bool isThreadedCompositingEnabled(); | 110 virtual bool isThreadedCompositingEnabled(); |
| 105 virtual double audioHardwareSampleRate(); | 111 virtual double audioHardwareSampleRate(); |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; | 245 scoped_ptr<BatteryStatusDispatcher> battery_status_dispatcher_; |
| 240 | 246 |
| 241 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 247 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 242 | 248 |
| 243 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); | 249 DISALLOW_COPY_AND_ASSIGN(RendererWebKitPlatformSupportImpl); |
| 244 }; | 250 }; |
| 245 | 251 |
| 246 } // namespace content | 252 } // namespace content |
| 247 | 253 |
| 248 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ | 254 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| OLD | NEW |