OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHILD_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
6 #define CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_CHILD_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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 blink::WebString signedPublicKeyAndChallengeString( | 78 blink::WebString signedPublicKeyAndChallengeString( |
79 unsigned key_size_index, | 79 unsigned key_size_index, |
80 const blink::WebString& challenge, | 80 const blink::WebString& challenge, |
81 const blink::WebURL& url, | 81 const blink::WebURL& url, |
82 const blink::WebURL& top_origin) override; | 82 const blink::WebURL& top_origin) override; |
83 size_t actualMemoryUsageMB() override; | 83 size_t actualMemoryUsageMB() override; |
84 size_t numberOfProcessors() override; | 84 size_t numberOfProcessors() override; |
85 | 85 |
86 size_t maxDecodedImageBytes() override; | 86 size_t maxDecodedImageBytes() override; |
87 uint32_t getUniqueIdForProcess() override; | 87 uint32_t getUniqueIdForProcess() override; |
88 blink::WebURLLoader* createURLLoader() override; | |
89 blink::WebSocketHandle* createWebSocketHandle() override; | 88 blink::WebSocketHandle* createWebSocketHandle() override; |
90 blink::WebString userAgent() override; | 89 blink::WebString userAgent() override; |
91 blink::WebData parseDataURL(const blink::WebURL& url, | 90 blink::WebData parseDataURL(const blink::WebURL& url, |
92 blink::WebString& mimetype, | 91 blink::WebString& mimetype, |
93 blink::WebString& charset) override; | 92 blink::WebString& charset) override; |
94 blink::WebURLError cancelledError(const blink::WebURL& url) const override; | 93 blink::WebURLError cancelledError(const blink::WebURL& url) const override; |
95 bool isReservedIPAddress(const blink::WebString& host) const override; | 94 bool isReservedIPAddress(const blink::WebString& host) const override; |
96 bool parseMultipartHeadersFromBody(const char* bytes, | 95 bool parseMultipartHeadersFromBody(const char* bytes, |
97 size_t size, | 96 size_t size, |
98 blink::WebURLResponse* response, | 97 blink::WebURLResponse* response, |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 scoped_refptr<PushDispatcher> push_dispatcher_; | 163 scoped_refptr<PushDispatcher> push_dispatcher_; |
165 std::unique_ptr<PermissionDispatcher> permission_client_; | 164 std::unique_ptr<PermissionDispatcher> permission_client_; |
166 std::unique_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 165 std::unique_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
167 | 166 |
168 scheduler::WebThreadBase* compositor_thread_; | 167 scheduler::WebThreadBase* compositor_thread_; |
169 }; | 168 }; |
170 | 169 |
171 } // namespace content | 170 } // namespace content |
172 | 171 |
173 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 172 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |