diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 04:07:29 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 04:07:29 +0000 |
commit | 7c1cf47e757207d6c90a5954ced27c2d108bc7b4 (patch) | |
tree | c1953598151e167bb1831c96e749c8814aee6e50 /chrome/common/webkit_param_traits.h | |
parent | fe9dbd662522c686fcdb33b0e89c0aafa268b68f (diff) | |
download | chromium_src-7c1cf47e757207d6c90a5954ced27c2d108bc7b4.zip chromium_src-7c1cf47e757207d6c90a5954ced27c2d108bc7b4.tar.gz chromium_src-7c1cf47e757207d6c90a5954ced27c2d108bc7b4.tar.bz2 |
Add final part of IPC plumbing for FileSystem API (retry).
Original issue: http://codereview.chromium.org/3208007/show
(Reverted due to rebase error)
BUG=32277
TEST=none; to be added when we have complete implementation.
TBR=phajdan-jr, michaeln
Review URL: http://codereview.chromium.org/3256006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57955 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/webkit_param_traits.h')
-rw-r--r-- | chrome/common/webkit_param_traits.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/webkit_param_traits.h b/chrome/common/webkit_param_traits.h index b45655f..6cb83e5 100644 --- a/chrome/common/webkit_param_traits.h +++ b/chrome/common/webkit_param_traits.h @@ -29,6 +29,7 @@ #include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h" #include "third_party/WebKit/WebKit/chromium/public/WebContextMenuData.h" #include "third_party/WebKit/WebKit/chromium/public/WebDragOperation.h" +#include "third_party/WebKit/WebKit/chromium/public/WebFileError.h" #include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" #include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" @@ -333,6 +334,11 @@ struct SimilarTypeTraits<WebKit::WebFileSystem::Type> { typedef int Type; }; +template <> +struct SimilarTypeTraits<WebKit::WebFileError> { + typedef int Type; +}; + } // namespace IPC #endif // CHROME_COMMON_WEBKIT_PARAM_TRAITS_H_ |