1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Get basic type definitions.
6 #define IPC_MESSAGE_IMPL
7 #include "content/common/content_message_generator.h"
9 // Generate constructors.
10 #include "ipc/struct_constructor_macros.h"
11 #include "content/common/content_message_generator.h"
13 // Generate destructors.
14 #include "ipc/struct_destructor_macros.h"
15 #include "content/common/content_message_generator.h"
17 #if defined(USE_AURA) && defined(OS_WIN)
18 #include "ui/gfx/native_widget_types.h"
21 // TODO(beng): Figure out why this is needed, fix that issue and remove
22 // this. Brett and I were unable to figure out why, but he
23 // thought this should be harmless.
25 struct ParamTraits
<gfx::PluginWindowHandle
> {
26 typedef gfx::PluginWindowHandle param_type
;
27 static void Write(Message
* m
, const param_type
& p
) {
28 m
->WriteUInt32(reinterpret_cast<uint32
>(p
));
30 static bool Read(const Message
* m
, PickleIterator
* iter
, param_type
* r
) {
31 DCHECK_EQ(sizeof(param_type
), sizeof(uint32
));
32 return m
->ReadUInt32(iter
, reinterpret_cast<uint32
*>(r
));
34 static void Log(const param_type
& p
, std::string
* l
) {
35 l
->append(StringPrintf("0x%X", p
));
41 // Generate param traits write methods.
42 #include "ipc/param_traits_write_macros.h"
44 #include "content/common/content_message_generator.h"
47 // Generate param traits read methods.
48 #include "ipc/param_traits_read_macros.h"
50 #include "content/common/content_message_generator.h"
53 // Generate param traits log methods.
54 #include "ipc/param_traits_log_macros.h"
56 #include "content/common/content_message_generator.h"