diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-17 14:58:38 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-17 14:58:38 +0000 |
commit | 9d03e7300b24129e53ac5f7894c003336c35f170 (patch) | |
tree | 1a5a8e5941c1365573a201044d4deb9f164d03bc /chrome/common/devtools_messages.h | |
parent | 390113a45ba7d8cf8a7bd4702d685bab003e2cf9 (diff) | |
download | chromium_src-9d03e7300b24129e53ac5f7894c003336c35f170.zip chromium_src-9d03e7300b24129e53ac5f7894c003336c35f170.tar.gz chromium_src-9d03e7300b24129e53ac5f7894c003336c35f170.tar.bz2 |
DevTools: Support runtime property name/value pairs instead of feature names as navigation state.
Review URL: http://codereview.chromium.org/3110018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56348 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/devtools_messages.h')
-rw-r--r-- | chrome/common/devtools_messages.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/devtools_messages.h b/chrome/common/devtools_messages.h index 4a09d43..060c4d9 100644 --- a/chrome/common/devtools_messages.h +++ b/chrome/common/devtools_messages.h @@ -6,8 +6,12 @@ #define CHROME_COMMON_DEVTOOLS_MESSAGES_H_ #pragma once +#include <map> + #include "ipc/ipc_message_utils.h" +typedef std::map<std::string, std::string> DevToolsRuntimeProperties; + #define MESSAGES_INTERNAL_FILE "chrome/common/devtools_messages_internal.h" #include "ipc/ipc_message_macros.h" |