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

Unified Diff: content/common/gpu/client/cc_param_traits.h

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 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/gpu/client/cc_param_traits.h
diff --git a/content/common/gpu/client/cc_param_traits.h b/content/common/gpu/client/cc_param_traits.h
new file mode 100644
index 0000000000000000000000000000000000000000..a8522f643f828b8e1da120faac0271e2f138e395
--- /dev/null
+++ b/content/common/gpu/client/cc_param_traits.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2012 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.
+
+#ifndef CONTENT_COMMON_GPU_CLIENT_CC_PARAM_TRAITS_H_
+#define CONTENT_COMMON_GPU_CLIENT_CC_PARAM_TRAITS_H_
+
+#include "cc/web_compositor_frame.h"
+#include "content/common/content_export.h"
+#include "ipc/ipc_message_utils.h"
+
+namespace WebKit {
+ struct WebCompositorFrame;
+ struct WebCompositorFrameAck;
jam 2012/09/24 18:25:36 I can't find these structs, so I don't know what t
+}
+
+namespace IPC {
+
+template<>
+struct CONTENT_EXPORT ParamTraits<WebKit::WebCompositorFrame> {
+ typedef WebKit::WebCompositorFrame param_type;
+ static void Write(Message* m, const param_type& p);
+ static bool Read(const Message* m, PickleIterator* iter, param_type* p);
+ static void Log(const param_type& p, std::string* l);
+};
+
+template<>
+struct CONTENT_EXPORT ParamTraits<WebKit::WebCompositorFrameAck> {
+ typedef WebKit::WebCompositorFrameAck param_type;
+ static void Write(Message* m, const param_type& p);
+ static bool Read(const Message* m, PickleIterator* iter, param_type* p);
+ static void Log(const param_type& p, std::string* l);
+};
+
+} // namespace IPC
+
+#endif // CONTENT_COMMON_GPU_CLIENT_CC_PARAM_TRAITS_H_

Powered by Google App Engine
This is Rietveld 408576698