chromeos: dbus: add Bluetooth properties support
[chromium-blink-merge.git] / content / common / content_message_generator.cc
bloba39b69f350169010d2bd4b07542bff0a34ee82dd
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"
20 namespace IPC {
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.
24 template <>
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, void** 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));
38 } // namespace IPC
39 #endif
41 // Generate param traits write methods.
42 #include "ipc/param_traits_write_macros.h"
43 namespace IPC {
44 #include "content/common/content_message_generator.h"
45 } // namespace IPC
47 // Generate param traits read methods.
48 #include "ipc/param_traits_read_macros.h"
49 namespace IPC {
50 #include "content/common/content_message_generator.h"
51 } // namespace IPC
53 // Generate param traits log methods.
54 #include "ipc/param_traits_log_macros.h"
55 namespace IPC {
56 #include "content/common/content_message_generator.h"
57 } // namespace IPC