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

Unified Diff: webkit/glue/webkitclient_impl.cc

Issue 187015: Add beginDragWithFiles to EventSendingController. Also implement WebKitClient... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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
Index: webkit/glue/webkitclient_impl.cc
===================================================================
--- webkit/glue/webkitclient_impl.cc (revision 25255)
+++ webkit/glue/webkitclient_impl.cc (working copy)
@@ -261,8 +261,8 @@
}
bool WebKitClientImpl::fileExists(const WebKit::WebString& path) {
- NOTREACHED();
- return false;
+ FilePath::StringType file_path = webkit_glue::WebStringToFilePathString(path);
+ return file_util::PathExists(FilePath(file_path));
}
bool WebKitClientImpl::deleteFile(const WebKit::WebString& path) {
« no previous file with comments | « no previous file | webkit/tools/layout_tests/test_expectations.txt » ('j') | webkit/tools/test_shell/event_sending_controller.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698