summaryrefslogtreecommitdiffstats
path: root/chrome/common/utility_messages.h
diff options
context:
space:
mode:
authortsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-17 18:20:52 +0000
committertsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-17 18:20:52 +0000
commite503a12601fee9e142e37a630f3db9b758499c82 (patch)
tree7aa599b0890395b715ff2ab292dde9a2f0b10db6 /chrome/common/utility_messages.h
parent5e3ebf12585ed50e2955d21a6276669f5e3a0e4e (diff)
downloadchromium_src-e503a12601fee9e142e37a630f3db9b758499c82.zip
chromium_src-e503a12601fee9e142e37a630f3db9b758499c82.tar.gz
chromium_src-e503a12601fee9e142e37a630f3db9b758499c82.tar.bz2
Creates the ipclist utility that chrome security team has wanted to dump
the known IPC messages. Going forward, this should help identify new messages between versions of chrome so that they may be given extra scrutiny for potential badness. under the common_message_generator.h umbrella. Review URL: http://codereview.chromium.org/6646005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/utility_messages.h')
-rw-r--r--chrome/common/utility_messages.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/common/utility_messages.h b/chrome/common/utility_messages.h
index 2f4ed95..27bd44e 100644
--- a/chrome/common/utility_messages.h
+++ b/chrome/common/utility_messages.h
@@ -26,11 +26,17 @@
#define IPC_MESSAGE_START UtilityMsgStart
+// Singly-included secton, not yet converted
+#ifndef CHROME_COMMON_UTILITY_MESSAGES_H_
+#define CHROME_COMMON_UTILITY_MESSAGES_H_
+
class FilePath;
class IndexedDBKey;
class SerializedScriptValue;
class SkBitmap;
+#endif // CHROME_COMMON_UTILITY_MESSAGES_H_
+
// Traits for UpdateManifest::Result.
IPC_STRUCT_TRAITS_BEGIN(UpdateManifest::Result)
IPC_STRUCT_TRAITS_MEMBER(extension_id)
@@ -85,7 +91,7 @@ IPC_MESSAGE_CONTROL3(UtilityMsg_IDBKeysFromValuesAndKeyPath,
IPC_MESSAGE_CONTROL3(UtilityMsg_InjectIDBKey,
IndexedDBKey /* key */,
SerializedScriptValue /* value */,
- string16 /* key path*/);
+ string16 /* key path*/)
// Tells the utility process that it's running in batch mode.
IPC_MESSAGE_CONTROL0(UtilityMsg_BatchMode_Started)