| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 long databaseGetFileAttributes( | 103 long databaseGetFileAttributes( |
| 104 const blink::WebString& vfs_file_name) override; | 104 const blink::WebString& vfs_file_name) override; |
| 105 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; | 105 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; |
| 106 long long databaseGetSpaceAvailableForOrigin( | 106 long long databaseGetSpaceAvailableForOrigin( |
| 107 const blink::WebString& origin_identifier) override; | 107 const blink::WebString& origin_identifier) override; |
| 108 bool databaseSetFileSize(const blink::WebString& vfs_file_name, | 108 bool databaseSetFileSize(const blink::WebString& vfs_file_name, |
| 109 long long size) override; | 109 long long size) override; |
| 110 blink::WebString signedPublicKeyAndChallengeString( | 110 blink::WebString signedPublicKeyAndChallengeString( |
| 111 unsigned key_size_index, | 111 unsigned key_size_index, |
| 112 const blink::WebString& challenge, | 112 const blink::WebString& challenge, |
| 113 const blink::WebURL& url) override; | 113 const blink::WebURL& url, |
| 114 const blink::WebURL& top_url) override; |
| 114 void getPluginList(bool refresh, | 115 void getPluginList(bool refresh, |
| 115 blink::WebPluginListBuilder* builder) override; | 116 blink::WebPluginListBuilder* builder) override; |
| 116 blink::WebPublicSuffixList* publicSuffixList() override; | 117 blink::WebPublicSuffixList* publicSuffixList() override; |
| 117 void screenColorProfile(blink::WebVector<char>* to_profile) override; | 118 void screenColorProfile(blink::WebVector<char>* to_profile) override; |
| 118 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 119 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 119 blink::WebIDBFactory* idbFactory() override; | 120 blink::WebIDBFactory* idbFactory() override; |
| 120 blink::WebServiceWorkerCacheStorage* cacheStorage( | 121 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 121 const blink::WebString& origin_identifier) override; | 122 const blink::WebString& origin_identifier) override; |
| 122 blink::WebFileSystem* fileSystem() override; | 123 blink::WebFileSystem* fileSystem() override; |
| 123 bool canAccelerate2dCanvas() override; | 124 bool canAccelerate2dCanvas() override; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; | 291 IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| 291 | 292 |
| 292 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 293 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| 293 | 294 |
| 294 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 295 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 295 }; | 296 }; |
| 296 | 297 |
| 297 } // namespace content | 298 } // namespace content |
| 298 | 299 |
| 299 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 300 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |