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

Side by Side Diff: tools/ipc_fuzzer/message_lib/message_names.cc

Issue 105083002: IPC fuzzer: create message_lib library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/ipc_fuzzer/message_lib/message_names.h ('k') | tools/ipc_fuzzer/replay/replay.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 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.
4
5 #include "tools/ipc_fuzzer/message_lib/message_names.h"
6 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
7
8 #include "ipc/ipc_message_null_macros.h"
9 #undef IPC_MESSAGE_DECL
10 #define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
11 names.Add(static_cast<uint32>(name::ID), #name);
12
13 void PopulateIpcMessageNames(ipc_fuzzer::MessageNames& names) {
14 #include "tools/ipc_fuzzer/message_lib/all_messages.h"
15 }
16
17 namespace ipc_fuzzer {
18
19 // static
20 MessageNames* MessageNames::all_names_ = NULL;
21
22 MessageNames::MessageNames() {
23 }
24
25 MessageNames::~MessageNames() {
26 }
27
28 // static
29 MessageNames* MessageNames::GetInstance() {
30 if (!all_names_) {
31 all_names_ = new MessageNames();
32 PopulateIpcMessageNames(*all_names_);
33 }
34 return all_names_;
35 }
36
37 } // namespace ipc_fuzzer
OLDNEW
« no previous file with comments | « tools/ipc_fuzzer/message_lib/message_names.h ('k') | tools/ipc_fuzzer/replay/replay.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698