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

Side by Side Diff: content/renderer/renderer_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
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 blink::WebStorageNamespace* createLocalStorageNamespace() override; 99 blink::WebStorageNamespace* createLocalStorageNamespace() override;
100 blink::Platform::FileHandle databaseOpenFile( 100 blink::Platform::FileHandle databaseOpenFile(
101 const blink::WebString& vfs_file_name, 101 const blink::WebString& vfs_file_name,
102 int desired_flags) override; 102 int desired_flags) override;
103 int databaseDeleteFile(const blink::WebString& vfs_file_name, 103 int databaseDeleteFile(const blink::WebString& vfs_file_name,
104 bool sync_dir) override; 104 bool sync_dir) override;
105 long databaseGetFileAttributes( 105 long databaseGetFileAttributes(
106 const blink::WebString& vfs_file_name) override; 106 const blink::WebString& vfs_file_name) override;
107 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override; 107 long long databaseGetFileSize(const blink::WebString& vfs_file_name) override;
108 long long databaseGetSpaceAvailableForOrigin( 108 long long databaseGetSpaceAvailableForOrigin(
109 const blink::WebString& origin_identifier) override; 109 const blink::WebSecurityOrigin& origin) override;
110 bool databaseSetFileSize(const blink::WebString& vfs_file_name, 110 bool databaseSetFileSize(const blink::WebString& vfs_file_name,
111 long long size) override; 111 long long size) override;
112 blink::WebString databaseCreateOriginIdentifier(
113 const blink::WebSecurityOrigin& origin) override;
114
112 blink::WebString signedPublicKeyAndChallengeString( 115 blink::WebString signedPublicKeyAndChallengeString(
113 unsigned key_size_index, 116 unsigned key_size_index,
114 const blink::WebString& challenge, 117 const blink::WebString& challenge,
115 const blink::WebURL& url, 118 const blink::WebURL& url,
116 const blink::WebURL& top_origin) override; 119 const blink::WebURL& top_origin) override;
117 void getPluginList(bool refresh, 120 void getPluginList(bool refresh,
118 blink::WebPluginListBuilder* builder) override; 121 blink::WebPluginListBuilder* builder) override;
119 blink::WebPublicSuffixList* publicSuffixList() override; 122 blink::WebPublicSuffixList* publicSuffixList() override;
120 void screenColorProfile(blink::WebVector<char>* to_profile) override; 123 void screenColorProfile(blink::WebVector<char>* to_profile) override;
121 blink::WebScrollbarBehavior* scrollbarBehavior() override; 124 blink::WebScrollbarBehavior* scrollbarBehavior() override;
122 blink::WebIDBFactory* idbFactory() override; 125 blink::WebIDBFactory* idbFactory() override;
123 blink::WebServiceWorkerCacheStorage* cacheStorage( 126 blink::WebServiceWorkerCacheStorage* cacheStorage(
124 const blink::WebSecurityOrigin& security_origin) override; 127 const blink::WebSecurityOrigin& security_origin) override;
125 blink::WebFileSystem* fileSystem() override; 128 blink::WebFileSystem* fileSystem() override;
129 blink::WebString fileSystemCreateOriginIdentifier(
130 const blink::WebSecurityOrigin& origin) override;
131
126 bool canAccelerate2dCanvas() override; 132 bool canAccelerate2dCanvas() override;
127 bool isThreadedCompositingEnabled() override; 133 bool isThreadedCompositingEnabled() override;
128 bool isThreadedAnimationEnabled() override; 134 bool isThreadedAnimationEnabled() override;
129 double audioHardwareSampleRate() override; 135 double audioHardwareSampleRate() override;
130 size_t audioHardwareBufferSize() override; 136 size_t audioHardwareBufferSize() override;
131 unsigned audioHardwareOutputChannels() override; 137 unsigned audioHardwareOutputChannels() override;
132 blink::WebDatabaseObserver* databaseObserver() override; 138 blink::WebDatabaseObserver* databaseObserver() override;
133 139
134 blink::WebAudioDevice* createAudioDevice( 140 blink::WebAudioDevice* createAudioDevice(
135 size_t buffer_size, 141 size_t buffer_size,
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 WebTrialTokenValidatorImpl trial_token_validator_; 303 WebTrialTokenValidatorImpl trial_token_validator_;
298 304
299 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 305 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
300 306
301 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 307 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
302 }; 308 };
303 309
304 } // namespace content 310 } // namespace content
305 311
306 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 312 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/web_database_observer_impl.cc ('k') | content/renderer/renderer_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698