| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 const blink::WebSecurityOrigin& origin) override; | 126 const blink::WebSecurityOrigin& origin) override; |
| 127 | 127 |
| 128 blink::WebString signedPublicKeyAndChallengeString( | 128 blink::WebString signedPublicKeyAndChallengeString( |
| 129 unsigned key_size_index, | 129 unsigned key_size_index, |
| 130 const blink::WebString& challenge, | 130 const blink::WebString& challenge, |
| 131 const blink::WebURL& url, | 131 const blink::WebURL& url, |
| 132 const blink::WebURL& top_origin) override; | 132 const blink::WebURL& top_origin) override; |
| 133 void getPluginList(bool refresh, | 133 void getPluginList(bool refresh, |
| 134 blink::WebPluginListBuilder* builder) override; | 134 blink::WebPluginListBuilder* builder) override; |
| 135 blink::WebPublicSuffixList* publicSuffixList() override; | 135 blink::WebPublicSuffixList* publicSuffixList() override; |
| 136 void screenColorProfile(blink::WebVector<char>* to_profile) override; | |
| 137 blink::WebScrollbarBehavior* scrollbarBehavior() override; | 136 blink::WebScrollbarBehavior* scrollbarBehavior() override; |
| 138 blink::WebIDBFactory* idbFactory() override; | 137 blink::WebIDBFactory* idbFactory() override; |
| 139 blink::WebServiceWorkerCacheStorage* cacheStorage( | 138 blink::WebServiceWorkerCacheStorage* cacheStorage( |
| 140 const blink::WebSecurityOrigin& security_origin) override; | 139 const blink::WebSecurityOrigin& security_origin) override; |
| 141 blink::WebFileSystem* fileSystem() override; | 140 blink::WebFileSystem* fileSystem() override; |
| 142 blink::WebString fileSystemCreateOriginIdentifier( | 141 blink::WebString fileSystemCreateOriginIdentifier( |
| 143 const blink::WebSecurityOrigin& origin) override; | 142 const blink::WebSecurityOrigin& origin) override; |
| 144 | 143 |
| 145 bool canAccelerate2dCanvas() override; | 144 bool canAccelerate2dCanvas() override; |
| 146 bool isThreadedCompositingEnabled() override; | 145 bool isThreadedCompositingEnabled() override; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 311 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 313 | 312 |
| 314 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 313 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
| 315 | 314 |
| 316 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 315 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 317 }; | 316 }; |
| 318 | 317 |
| 319 } // namespace content | 318 } // namespace content |
| 320 | 319 |
| 321 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 320 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |