Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Unified Diff: content/common/input/input_param_traits.h

Issue 19624005: Add InputEvent and EventPacket types for batched input delivery (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/input/input_param_traits.h
diff --git a/content/common/input/input_param_traits.h b/content/common/input/input_param_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..f82a4c825dfb16e6d0bf761373c1f56fc53488fd
--- /dev/null
+++ b/content/common/input/input_param_traits.h
@@ -0,0 +1,72 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file defines IPC::ParamTraits<> specializations for several
+// input-related types that require manual serialiation code.
+
+#ifndef CONTENT_COMMON_INPUT_INPUT_PARAM_TRAITS_H_
+#define CONTENT_COMMON_INPUT_INPUT_PARAM_TRAITS_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "content/common/content_param_traits_macros.h"
+#include "content/common/input/input_event.h"
+#include "content/common/input/web_input_event_payload.h"
+
+namespace IPC {
+
+// TODO(jdduke): There should be a common copy of this utility somewhere...
+// Move or remove appropriately.
+template<class P>
+struct ParamTraits<scoped_ptr<P> > {
+ typedef scoped_ptr<P> param_type;
+ static void Write(Message* m, const param_type& p) {
+ bool valid = !!p;
+ WriteParam(m, valid);
+ if (valid)
+ WriteParam(m, *p);
+ }
+ static bool Read(const Message* m, PickleIterator* iter, param_type* r) {
+ bool valid = false;
+ if (!ReadParam(m, iter, &valid))
+ return false;
+
+ if (!valid) {
+ r->reset();
+ return true;
+ }
+
+ param_type temp(new P());
palmer 2013/09/03 23:12:47 Just to make sure I understand: You allocate a new
jdduke (slow) 2013/09/04 17:53:24 Well, param_type* r is a pointer to any empty scop
jdduke (slow) 2013/09/05 00:01:21 Or perhaps you meant we should go ahead and assign
palmer 2013/09/05 01:20:15 No, I think you are right. I was trying to figure
jdduke (slow) 2013/09/05 19:31:48 Yeah, that crossed my mind. This operation *shoul
+ if (!ReadParam(m, iter, temp.get()))
+ return false;
+
+ r->swap(temp);
+ return true;
+ }
+ static void Log(const param_type& p, std::string* l) {
+ if (p)
+ LogParam(*p, l);
+ else
+ l->append("NULL");
+ }
+};
+
+template <>
+struct CONTENT_EXPORT ParamTraits<content::InputEvent> {
+ typedef content::InputEvent param_type;
+ static void Write(Message* m, const param_type& p);
+ static bool Read(const Message* m, PickleIterator* iter, param_type* r);
+ static void Log(const param_type& p, std::string* l);
+};
+
+template <>
+struct CONTENT_EXPORT ParamTraits<content::WebInputEventPayload> {
+ typedef content::WebInputEventPayload param_type;
+ static void Write(Message* m, const param_type& p);
+ static bool Read(const Message* m, PickleIterator* iter, param_type* r);
+ static void Log(const param_type& p, std::string* l);
+};
+
+} // namespace IPC
+
+#endif // CONTENT_COMMON_INPUT_INPUT_PARAM_TRAITS_H_

Powered by Google App Engine
This is Rietveld 408576698