| Index: webkit/glue/webkit_glue.cc
|
| ===================================================================
|
| --- webkit/glue/webkit_glue.cc (revision 25608)
|
| +++ webkit/glue/webkit_glue.cc (working copy)
|
| @@ -273,6 +273,14 @@
|
| #endif
|
| }
|
|
|
| +FilePath WebStringToFilePath(const WebKit::WebString& str) {
|
| + return FilePath(WebStringToFilePathString(str));
|
| +}
|
| +
|
| +WebKit::WebString FilePathToWebString(const FilePath& file_path) {
|
| + return FilePathStringToWebString(file_path.value());
|
| +}
|
| +
|
| std::string GetWebKitVersion() {
|
| return StringPrintf("%d.%d", WEBKIT_VERSION_MAJOR, WEBKIT_VERSION_MINOR);
|
| }
|
|
|