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

Unified Diff: content/child/blink_platform_impl.cc

Issue 1006423008: Add SetFileSize() IPC for WebSQL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 1874a5b63552fb688c5c2b04c5466cecf4b109d9..768bbfefad14fe930339bcce4a7d3fa78f5d465b 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -1119,6 +1119,11 @@ long long BlinkPlatformImpl::databaseGetSpaceAvailableForOrigin(
return 0;
}
+bool BlinkPlatformImpl::databaseSetFileSize(
+ const blink::WebString& vfs_file_name, long long size) {
+ return false;
+}
+
blink::WebString BlinkPlatformImpl::signedPublicKeyAndChallengeString(
unsigned key_size_index,
const blink::WebString& challenge,

Powered by Google App Engine
This is Rietveld 408576698