| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 const blink::WebString& vfs_file_name) override; | 109 const blink::WebString& vfs_file_name) override; |
| 110 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; | 110 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; |
| 111 long long databaseGetSpaceAvailableForOrigin( | 111 long long databaseGetSpaceAvailableForOrigin( |
| 112 const blink::WebSecurityOrigin& origin) override; | 112 const blink::WebSecurityOrigin& origin) override; |
| 113 bool databaseSetFileSize(const blink::WebString& vfs_file_name, | 113 bool databaseSetFileSize(const blink::WebString& vfs_file_name, |
| 114 long long size) override; | 114 long long size) override; |
| 115 blink::WebString databaseCreateOriginIdentifier( | 115 blink::WebString databaseCreateOriginIdentifier( |
| 116 const blink::WebSecurityOrigin& origin) override; | 116 const blink::WebSecurityOrigin& origin) override; |
| 117 cc::FrameSinkId generateFrameSinkId() override; | 117 cc::FrameSinkId generateFrameSinkId() override; |
| 118 | 118 |
| 119 blink::WebString signedPublicKeyAndChallengeString( | |
| 120 unsigned key_size_index, | |
| 121 const blink::WebString& challenge, | |
| 122 const blink::WebURL& url, | |
| 123 const blink::WebURL& top_origin) override; | |
| 124 void getPluginList(bool refresh, | 119 void getPluginList(bool refresh, |
| 125 const blink::WebSecurityOrigin& mainFrameOrigin, | 120 const blink::WebSecurityOrigin& mainFrameOrigin, |
| 126 blink::WebPluginListBuilder* builder) override; | 121 blink::WebPluginListBuilder* builder) override; |
| 127 blink::WebPublicSuffixList* publicSuffixList() override; | 122 blink::WebPublicSuffixList* publicSuffixList() override; |
| 128 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 123 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 129 blink::WebIDBFactory* idbFactory() override; | 124 blink::WebIDBFactory* idbFactory() override; |
| 130 blink::WebServiceWorkerCacheStorage* cacheStorage( | 125 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 131 const blink::WebSecurityOrigin& security_origin) override; | 126 const blink::WebSecurityOrigin& security_origin) override; |
| 132 blink::WebFileSystem* fileSystem() override; | 127 blink::WebFileSystem* fileSystem() override; |
| 133 blink::WebString fileSystemCreateOriginIdentifier( | 128 blink::WebString fileSystemCreateOriginIdentifier( |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 297 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 303 | 298 |
| 304 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; | 299 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; |
| 305 | 300 |
| 306 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 301 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 307 }; | 302 }; |
| 308 | 303 |
| 309 } // namespace content | 304 } // namespace content |
| 310 | 305 |
| 311 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 306 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |