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

Side by Side Diff: ipc/ipc_message_utils.h

Issue 6388004: Move non-file-system Pepper IPC messages to chrome/common/pepper_messages.*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/renderer
Patch Set: Fix size_t-size-correctness. Created 9 years, 11 months 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 | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IPC_IPC_MESSAGE_UTILS_H_ 5 #ifndef IPC_IPC_MESSAGE_UTILS_H_
6 #define IPC_IPC_MESSAGE_UTILS_H_ 6 #define IPC_IPC_MESSAGE_UTILS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <string> 10 #include <string>
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 ServiceMsgStart, 59 ServiceMsgStart,
60 PpapiMsgStart, 60 PpapiMsgStart,
61 FirefoxImporterUnittestMsgStart, 61 FirefoxImporterUnittestMsgStart,
62 FileUtilitiesMsgStart, 62 FileUtilitiesMsgStart,
63 MimeRegistryMsgStart, 63 MimeRegistryMsgStart,
64 DatabaseMsgStart, 64 DatabaseMsgStart,
65 DOMStorageMsgStart, 65 DOMStorageMsgStart,
66 IndexedDBMsgStart, 66 IndexedDBMsgStart,
67 PepperFileMsgStart, 67 PepperFileMsgStart,
68 SpeechInputMsgStart, 68 SpeechInputMsgStart,
69 PepperMsgStart,
69 }; 70 };
70 71
71 class DictionaryValue; 72 class DictionaryValue;
72 class FilePath; 73 class FilePath;
73 class ListValue; 74 class ListValue;
74 class NullableString16; 75 class NullableString16;
75 76
76 namespace base { 77 namespace base {
77 class Time; 78 class Time;
78 class TimeDelta; 79 class TimeDelta;
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 ReplyParam p(a, b, c, d, e); 1185 ReplyParam p(a, b, c, d, e);
1185 WriteParam(reply, p); 1186 WriteParam(reply, p);
1186 } 1187 }
1187 }; 1188 };
1188 1189
1189 //----------------------------------------------------------------------------- 1190 //-----------------------------------------------------------------------------
1190 1191
1191 } // namespace IPC 1192 } // namespace IPC
1192 1193
1193 #endif // IPC_IPC_MESSAGE_UTILS_H_ 1194 #endif // IPC_IPC_MESSAGE_UTILS_H_
OLDNEW
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698