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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 blink::WebFallbackThemeEngine* fallbackThemeEngine() override; | 65 blink::WebFallbackThemeEngine* fallbackThemeEngine() override; |
66 blink::Platform::FileHandle databaseOpenFile( | 66 blink::Platform::FileHandle databaseOpenFile( |
67 const blink::WebString& vfs_file_name, | 67 const blink::WebString& vfs_file_name, |
68 int desired_flags) override; | 68 int desired_flags) override; |
69 int databaseDeleteFile(const blink::WebString& vfs_file_name, | 69 int databaseDeleteFile(const blink::WebString& vfs_file_name, |
70 bool sync_dir) override; | 70 bool sync_dir) override; |
71 long databaseGetFileAttributes( | 71 long databaseGetFileAttributes( |
72 const blink::WebString& vfs_file_name) override; | 72 const blink::WebString& vfs_file_name) override; |
73 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; | 73 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; |
74 long long databaseGetSpaceAvailableForOrigin( | 74 long long databaseGetSpaceAvailableForOrigin( |
75 const blink::WebString& origin_identifier) override; | 75 const blink::WebSecurityOrigin& origin) override; |
76 bool databaseSetFileSize(const blink::WebString& vfs_file_name, | 76 bool databaseSetFileSize(const blink::WebString& vfs_file_name, |
77 long long size) override; | 77 long long size) override; |
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 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 scoped_refptr<PushDispatcher> push_dispatcher_; | 170 scoped_refptr<PushDispatcher> push_dispatcher_; |
171 scoped_ptr<PermissionDispatcher> permission_client_; | 171 scoped_ptr<PermissionDispatcher> permission_client_; |
172 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; | 172 scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_; |
173 | 173 |
174 scheduler::WebThreadBase* compositor_thread_; | 174 scheduler::WebThreadBase* compositor_thread_; |
175 }; | 175 }; |
176 | 176 |
177 } // namespace content | 177 } // namespace content |
178 | 178 |
179 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ | 179 #endif // CONTENT_CHILD_BLINK_PLATFORM_IMPL_H_ |
OLD | NEW |