| 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) {
|
|
|