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

Unified Diff: public/platform/Platform.h

Issue 1012353002: Fix WebSQL error on sandboxed OSX and Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index c30e8d260c924fd0f1bf3ef4b6b7e84bfa786c7f..d5b902db65f2e04e91b3a3a9997b769ed2d8aeb8 100644
--- a/public/platform/Platform.h
+++ b/public/platform/Platform.h
@@ -190,6 +190,9 @@ public:
// Returns the space available for the given origin
virtual long long databaseGetSpaceAvailableForOrigin(const WebString& originIdentifier) { return 0; }
+ // Set the size of the given database file
+ virtual bool databaseSetFileSize(const WebString& vfsFileName, long long size) { return false; }
Scott Hess - ex-Googler 2015/03/18 01:45:46 This file needs to be changed before the browser c
michaeln 2015/03/19 00:14:04 i think you can do this in 2 commits first chromiu
Scott Hess - ex-Googler 2015/03/25 20:19:55 I may not understand things, then - without this c
+
// DOM Storage --------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698