| Index: webkit/mocks/mock_webframe.cc
|
| ===================================================================
|
| --- webkit/mocks/mock_webframe.cc (revision 81576)
|
| +++ webkit/mocks/mock_webframe.cc (working copy)
|
| @@ -160,9 +160,17 @@
|
| }
|
|
|
| v8::Handle<v8::Value> MockWebFrame::createFileSystem(
|
| - int type, const WebString& name, const WebString& path) {
|
| + WebKit::WebFileSystem::Type type, const WebString& name,
|
| + const WebString& path) {
|
| return v8::Handle<v8::Value>();
|
| }
|
| +
|
| +v8::Handle<v8::Value> MockWebFrame::createFileEntry(
|
| + WebKit::WebFileSystem::Type type, const WebString& fileSystemName,
|
| + const WebString& fileSystemPath, const WebString& filePath,
|
| + bool isDirectory) {
|
| + return v8::Handle<v8::Value>();
|
| +}
|
| #endif
|
|
|
|
|
|
|