diff options
author | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 01:24:36 +0000 |
---|---|---|
committer | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 01:24:36 +0000 |
commit | ff7321db2060aa69b63b2090b0e5eb92d2df704e (patch) | |
tree | d0c7f2465677b4e1b7aedfa7e2c99ca916fd8b1b /webkit/glue/webkit_glue.h | |
parent | b331674628336f246aeaa85b50f1331d1fe6e9c0 (diff) | |
download | chromium_src-ff7321db2060aa69b63b2090b0e5eb92d2df704e.zip chromium_src-ff7321db2060aa69b63b2090b0e5eb92d2df704e.tar.gz chromium_src-ff7321db2060aa69b63b2090b0e5eb92d2df704e.tar.bz2 |
Yet another try at submitting http://codereview.chromium.org/3397030/show.
This hopefully fixes the linux x64 failure, which appears to be a disagreement between int64 and long long.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3601001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webkit_glue.h')
-rw-r--r-- | webkit/glue/webkit_glue.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/webkit/glue/webkit_glue.h b/webkit/glue/webkit_glue.h index 6c7387d..380bf36 100644 --- a/webkit/glue/webkit_glue.h +++ b/webkit/glue/webkit_glue.h @@ -16,8 +16,10 @@ #include "app/clipboard/clipboard.h" #include "base/file_path.h" +#include "base/platform_file.h" #include "base/string16.h" #include "third_party/WebKit/WebKit/chromium/public/WebCanvas.h" +#include "third_party/WebKit/WebKit/chromium/public/WebFileError.h" class GURL; class SkBitmap; @@ -132,6 +134,10 @@ WebKit::WebString FilePathStringToWebString(const FilePath::StringType& str); FilePath WebStringToFilePath(const WebKit::WebString& str); WebKit::WebString FilePathToWebString(const FilePath& file_path); +// File error conversion +WebKit::WebFileError PlatformFileErrorToWebFileError( + base::PlatformFileError error_code); + // Returns a WebCanvas pointer associated with the given Skia canvas. WebKit::WebCanvas* ToWebCanvas(skia::PlatformCanvas*); |