| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 blink::WebCookieJar* cookieJar() override; | 85 blink::WebCookieJar* cookieJar() override; |
| 86 blink::WebThemeEngine* themeEngine() override; | 86 blink::WebThemeEngine* themeEngine() override; |
| 87 blink::WebSpeechSynthesizer* createSpeechSynthesizer( | 87 blink::WebSpeechSynthesizer* createSpeechSynthesizer( |
| 88 blink::WebSpeechSynthesizerClient* client) override; | 88 blink::WebSpeechSynthesizerClient* client) override; |
| 89 virtual bool sandboxEnabled(); | 89 virtual bool sandboxEnabled(); |
| 90 unsigned long long visitedLinkHash(const char* canonicalURL, | 90 unsigned long long visitedLinkHash(const char* canonicalURL, |
| 91 size_t length) override; | 91 size_t length) override; |
| 92 bool isLinkVisited(unsigned long long linkHash) override; | 92 bool isLinkVisited(unsigned long long linkHash) override; |
| 93 void createMessageChannel(blink::WebMessagePortChannel** channel1, | 93 void createMessageChannel(blink::WebMessagePortChannel** channel1, |
| 94 blink::WebMessagePortChannel** channel2) override; | 94 blink::WebMessagePortChannel** channel2) override; |
| 95 blink::WebSocketHandle* createWebSocketHandle() override; | |
| 96 blink::WebPrescientNetworking* prescientNetworking() override; | 95 blink::WebPrescientNetworking* prescientNetworking() override; |
| 97 void cacheMetadata(const blink::WebURL&, | 96 void cacheMetadata(const blink::WebURL&, |
| 98 int64_t, | 97 int64_t, |
| 99 const char*, | 98 const char*, |
| 100 size_t) override; | 99 size_t) override; |
| 101 void cacheMetadataInCacheStorage( | 100 void cacheMetadataInCacheStorage( |
| 102 const blink::WebURL&, | 101 const blink::WebURL&, |
| 103 int64_t, | 102 int64_t, |
| 104 const char*, | 103 const char*, |
| 105 size_t, | 104 size_t, |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 308 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 310 | 309 |
| 311 mojom::URLLoaderFactoryPtr url_loader_factory_; | 310 mojom::URLLoaderFactoryPtr url_loader_factory_; |
| 312 | 311 |
| 313 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 314 }; | 313 }; |
| 315 | 314 |
| 316 } // namespace content | 315 } // namespace content |
| 317 | 316 |
| 318 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |