| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 bool sync_dir) override; | 107 bool sync_dir) override; |
| 108 long databaseGetFileAttributes( | 108 long databaseGetFileAttributes( |
| 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 | 118 |
| 118 blink::WebString signedPublicKeyAndChallengeString( | 119 blink::WebString signedPublicKeyAndChallengeString( |
| 119 unsigned key_size_index, | 120 unsigned key_size_index, |
| 120 const blink::WebString& challenge, | 121 const blink::WebString& challenge, |
| 121 const blink::WebURL& url, | 122 const blink::WebURL& url, |
| 122 const blink::WebURL& top_origin) override; | 123 const blink::WebURL& top_origin) override; |
| 123 void getPluginList(bool refresh, | 124 void getPluginList(bool refresh, |
| 124 const blink::WebSecurityOrigin& mainFrameOrigin, | 125 const blink::WebSecurityOrigin& mainFrameOrigin, |
| 125 blink::WebPluginListBuilder* builder) override; | 126 blink::WebPluginListBuilder* builder) override; |
| 126 blink::WebPublicSuffixList* publicSuffixList() override; | 127 blink::WebPublicSuffixList* publicSuffixList() override; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 302 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 302 | 303 |
| 303 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; | 304 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; |
| 304 | 305 |
| 305 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 306 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 306 }; | 307 }; |
| 307 | 308 |
| 308 } // namespace content | 309 } // namespace content |
| 309 | 310 |
| 310 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 311 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |