diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-04 12:56:01 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-04 12:56:01 +0000 |
commit | c7199a6e688ad9249ee269cc0e46af0c742e8452 (patch) | |
tree | cfdbd6953f9b5df99e9197b0925c47b789591c5e /content/child/plugin_message_generator.cc | |
parent | b07a6e40cbc9189ca7740dfc1c5400e84386bfca (diff) | |
download | chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.zip chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.tar.gz chromium_src-c7199a6e688ad9249ee269cc0e46af0c742e8452.tar.bz2 |
Rename content/common_child to content/child
As prerequiste for linked bug.
TBR=palmer@chromium.org
R=jam@chromium.org,jamesr@chromium.org
BUG=246357
Review URL: https://chromiumcodereview.appspot.com/16325022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203945 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child/plugin_message_generator.cc')
-rw-r--r-- | content/child/plugin_message_generator.cc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/content/child/plugin_message_generator.cc b/content/child/plugin_message_generator.cc new file mode 100644 index 0000000..d490345 --- /dev/null +++ b/content/child/plugin_message_generator.cc @@ -0,0 +1,33 @@ +// Copyright 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. + +// Get basic type definitions. +#define IPC_MESSAGE_IMPL +#include "content/child/plugin_message_generator.h" + +// Generate constructors. +#include "ipc/struct_constructor_macros.h" +#include "content/child/plugin_message_generator.h" + +// Generate destructors. +#include "ipc/struct_destructor_macros.h" +#include "content/child/plugin_message_generator.h" + +// Generate param traits write methods. +#include "ipc/param_traits_write_macros.h" +namespace IPC { +#include "content/child/plugin_message_generator.h" +} // namespace IPC + +// Generate param traits read methods. +#include "ipc/param_traits_read_macros.h" +namespace IPC { +#include "content/child/plugin_message_generator.h" +} // namespace IPC + +// Generate param traits log methods. +#include "ipc/param_traits_log_macros.h" +namespace IPC { +#include "content/child/plugin_message_generator.h" +} // namespace IPC |