forked from sanyaade-mobiledev/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the implementation .cc files go away, instead have the authors g…
…ive us a header only. Review URL: http://codereview.chromium.org/6410007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74637 0039d316-1c4b-4281-b951-d872f2087c98
- Loading branch information
tsepez@chromium.org
committed
Feb 11, 2011
1 parent
5d29a5c
commit 6476c72
Showing
13 changed files
with
598 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright (c) 2010 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 "chrome/common/common_message_generator.h" | ||
#include "chrome/common/common_param_traits.h" | ||
|
||
// Generate constructors. | ||
#include "ipc/struct_constructor_macros.h" | ||
#include "chrome/common/common_message_generator.h" | ||
|
||
// Generate destructors. | ||
#include "ipc/struct_destructor_macros.h" | ||
#include "chrome/common/common_message_generator.h" | ||
|
||
namespace IPC { | ||
|
||
// Generate param traits write methods. | ||
#include "ipc/param_traits_write_macros.h" | ||
#include "chrome/common/common_message_generator.h" | ||
|
||
// Generate param traits read methods. | ||
#include "ipc/param_traits_read_macros.h" | ||
#include "chrome/common/common_message_generator.h" | ||
|
||
// Generate param traits log methods. | ||
#include "ipc/param_traits_log_macros.h" | ||
#include "chrome/common/common_message_generator.h" | ||
|
||
} // namespace IPC | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright (c) 2010 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. | ||
|
||
// Multiply-included file, hence no include guard. | ||
|
||
#if 0 // This feature is not yet enabled for these files. | ||
|
||
#include "chrome/common/autofill_messages.h" | ||
#include "chrome/common/automation_messages.h" | ||
#include "chrome/common/database_messages.h" | ||
#include "chrome/common/devtools_messages.h" | ||
#include "chrome/common/dom_storage_messages.h" | ||
#include "chrome/common/file_utilities_messages.h" | ||
#include "chrome/common/gpu_messages.h" | ||
#include "chrome/common/indexed_db_messages.h" | ||
#include "chrome/common/mime_registry_messages.h" | ||
#include "chrome/common/nacl_messages.h" | ||
#include "chrome/common/pepper_file_messages.h" | ||
#include "chrome/common/pepper_messages.h" | ||
#include "chrome/common/plugin_messages.h" | ||
#include "chrome/common/render_messages.h" | ||
#include "chrome/common/service_messages.h" | ||
#include "chrome/common/speech_input_messages.h" | ||
#include "chrome/common/utility_messages.h" | ||
#include "chrome/common/worker_messages.h" | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.