Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: content/child/blink_platform_impl.h

Issue 1779413002: Remove Blink's DatabaseIdentifier implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unneeded include Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698