Chromium Code Reviews

Unified Diff: chrome/common/common_param_traits.h

Issue 4979003: Implement web app definition parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nacl64 build Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/common/common_param_traits.h
diff --git a/chrome/common/common_param_traits.h b/chrome/common/common_param_traits.h
index d8796d616db61ca9ab3371377c87aef86c106026..6862482f216b5cfcf2d13fd64c2592c3fd575929 100644
--- a/chrome/common/common_param_traits.h
+++ b/chrome/common/common_param_traits.h
@@ -40,6 +40,7 @@ class DictionaryValue;
class ListValue;
struct ThumbnailScore;
class URLRequestStatus;
+struct WebApplicationInfo;
class WebCursor;
namespace gfx {
@@ -58,7 +59,6 @@ struct PageRange;
namespace webkit_glue {
struct PasswordForm;
-struct WebApplicationInfo;
} // namespace webkit_glue
namespace IPC {
@@ -231,8 +231,8 @@ struct ParamTraits<WebCursor> {
template <>
-struct ParamTraits<webkit_glue::WebApplicationInfo> {
- typedef webkit_glue::WebApplicationInfo param_type;
+struct ParamTraits<WebApplicationInfo> {
+ typedef WebApplicationInfo param_type;
static void Write(Message* m, const param_type& p);
static bool Read(const Message* m, void** iter, param_type* r);
static void Log(const param_type& p, std::string* l);

Powered by Google App Engine