diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-21 05:48:22 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-21 05:48:22 +0000 |
commit | 2b06a99e03e8f69171bb3a79f2a9b58aa95345f1 (patch) | |
tree | 28b5e796f1150838169619c4febc1095fce1295e /chrome/common/webkit_param_traits.h | |
parent | 65a3b914585cee20f1c8b213c82eaa2a5da0cb25 (diff) | |
download | chromium_src-2b06a99e03e8f69171bb3a79f2a9b58aa95345f1.zip chromium_src-2b06a99e03e8f69171bb3a79f2a9b58aa95345f1.tar.gz chromium_src-2b06a99e03e8f69171bb3a79f2a9b58aa95345f1.tar.bz2 |
Add 1st cut of IPC plumbing code for FileSystem API's openFileSystem
The dispatcher host code is just a stub.
BUG=32277
TESTS=none; will be added later
Review URL: http://codereview.chromium.org/3107026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56984 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 5310a4d..b45655f 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/WebFileSystem.h" #include "third_party/WebKit/WebKit/chromium/public/WebInputEvent.h" #include "third_party/WebKit/WebKit/chromium/public/WebPopupType.h" #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" @@ -327,6 +328,11 @@ struct ParamTraits<WebKit::WebTextInputType> { } }; +template <> +struct SimilarTypeTraits<WebKit::WebFileSystem::Type> { + typedef int Type; +}; + } // namespace IPC #endif // CHROME_COMMON_WEBKIT_PARAM_TRAITS_H_ |