| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 long long size) override; | 122 long long size) override; |
| 123 blink::WebString databaseCreateOriginIdentifier( | 123 blink::WebString databaseCreateOriginIdentifier( |
| 124 const blink::WebSecurityOrigin& origin) override; | 124 const blink::WebSecurityOrigin& origin) override; |
| 125 | 125 |
| 126 blink::WebString signedPublicKeyAndChallengeString( | 126 blink::WebString signedPublicKeyAndChallengeString( |
| 127 unsigned key_size_index, | 127 unsigned key_size_index, |
| 128 const blink::WebString& challenge, | 128 const blink::WebString& challenge, |
| 129 const blink::WebURL& url, | 129 const blink::WebURL& url, |
| 130 const blink::WebURL& top_origin) override; | 130 const blink::WebURL& top_origin) override; |
| 131 void getPluginList(bool refresh, | 131 void getPluginList(bool refresh, |
| 132 const blink::WebSecurityOrigin& mainFrameOrigin, |
| 132 blink::WebPluginListBuilder* builder) override; | 133 blink::WebPluginListBuilder* builder) override; |
| 133 blink::WebPublicSuffixList* publicSuffixList() override; | 134 blink::WebPublicSuffixList* publicSuffixList() override; |
| 134 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 135 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 135 blink::WebIDBFactory* idbFactory() override; | 136 blink::WebIDBFactory* idbFactory() override; |
| 136 blink::WebServiceWorkerCacheStorage* cacheStorage( | 137 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 137 const blink::WebSecurityOrigin& security_origin) override; | 138 const blink::WebSecurityOrigin& security_origin) override; |
| 138 blink::WebFileSystem* fileSystem() override; | 139 blink::WebFileSystem* fileSystem() override; |
| 139 blink::WebString fileSystemCreateOriginIdentifier( | 140 blink::WebString fileSystemCreateOriginIdentifier( |
| 140 const blink::WebSecurityOrigin& origin) override; | 141 const blink::WebSecurityOrigin& origin) override; |
| 141 | 142 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 308 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 308 | 309 |
| 309 mojom::URLLoaderFactoryPtr url_loader_factory_; | 310 mojom::URLLoaderFactoryPtr url_loader_factory_; |
| 310 | 311 |
| 311 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 312 }; | 313 }; |
| 313 | 314 |
| 314 } // namespace content | 315 } // namespace content |
| 315 | 316 |
| 316 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |