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

Unified Diff: webkit/glue/webkitclient_impl.cc

Issue 174232: Chromium side patch for DB support on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final version, including changes to the DEPS file. Created 11 years, 4 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
« no previous file with comments | « webkit/glue/webkitclient_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkitclient_impl.cc
===================================================================
--- webkit/glue/webkitclient_impl.cc (revision 24791)
+++ webkit/glue/webkitclient_impl.cc (working copy)
@@ -238,13 +238,16 @@
}
base::PlatformFile WebKitClientImpl::databaseOpenFile(
- const WebKit::WebString& file_name, int desired_flags) {
+ const WebKit::WebString& file_name, int desired_flags,
+ base::PlatformFile* dir_handle) {
+ if (dir_handle)
+ *dir_handle = base::kInvalidPlatformFileValue;
return base::kInvalidPlatformFileValue;
}
-bool WebKitClientImpl::databaseDeleteFile(
- const WebKit::WebString& file_name) {
- return false;
+int WebKitClientImpl::databaseDeleteFile(
+ const WebKit::WebString& file_name, bool sync_dir) {
+ return -1;
}
long WebKitClientImpl::databaseGetFileAttributes(
« no previous file with comments | « webkit/glue/webkitclient_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698