Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ | 5 #ifndef CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ |
| 6 #define CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ | 6 #define CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" |
| 10 | 10 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 virtual void directoryExists( | 57 virtual void directoryExists( |
| 58 const WebKit::WebString& path, | 58 const WebKit::WebString& path, |
| 59 WebKit::WebFileSystemCallbacks*); | 59 WebKit::WebFileSystemCallbacks*); |
| 60 | 60 |
| 61 virtual void readDirectory( | 61 virtual void readDirectory( |
| 62 const WebKit::WebString& path, | 62 const WebKit::WebString& path, |
| 63 WebKit::WebFileSystemCallbacks*); | 63 WebKit::WebFileSystemCallbacks*); |
| 64 | 64 |
| 65 virtual WebKit::WebFileWriter* createFileWriter( | 65 virtual WebKit::WebFileWriter* createFileWriter( |
| 66 const WebKit::WebString& path, WebKit::WebFileWriterClient*); | 66 const WebKit::WebString& path, WebKit::WebFileWriterClient*); |
| 67 | |
|
kinuko
2011/03/22 00:16:24
No need to change this file?
ericu
2011/03/22 00:40:31
Reverted.
| |
| 67 }; | 68 }; |
| 68 | 69 |
| 69 #endif // CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ | 70 #endif // CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_ |
| OLD | NEW |