Chromium Code Reviews| Index: content/common/devtools_messages.h |
| diff --git a/content/common/devtools_messages.h b/content/common/devtools_messages.h |
| index a472e3505ffdcf4a542390f94176b8933122638c..e5e4bde01bccbd887b7c462a7664eb86158fbff3 100644 |
| --- a/content/common/devtools_messages.h |
| +++ b/content/common/devtools_messages.h |
| @@ -138,6 +138,16 @@ IPC_MESSAGE_ROUTED2(DevToolsHostMsg_Append, |
| std::string /* url */, |
| std::string /* content */) |
| +// Requests the list of file systems added for devtools previously. |
| +IPC_MESSAGE_ROUTED0(DevToolsHostMsg_RequestFileSystems) |
|
Tom Sepez
2013/01/11 18:34:17
nit: I might call this _ListFileSystems since req
Tom Sepez
2013/01/11 18:40:08
Nevermind. It looks like this is doing more than
|
| + |
| +// Shows a dialog to select a folder to add an isolated file system for. |
| +IPC_MESSAGE_ROUTED0(DevToolsHostMsg_AddFileSystem) |
| + |
| +// Removes previously added devtools file system by given |file_system_path|. |
| +IPC_MESSAGE_ROUTED1(DevToolsHostMsg_RemoveFileSystem, |
| + std::string /* file_system_path */) |
| + |
| // Updates agent runtime state stored in devtools manager in order to support |
| // cross-navigation instrumentation. |
| IPC_MESSAGE_ROUTED1(DevToolsHostMsg_SaveAgentRuntimeState, |