| Index: content/common/devtools_messages.h
|
| diff --git a/content/common/devtools_messages.h b/content/common/devtools_messages.h
|
| index a472e3505ffdcf4a542390f94176b8933122638c..62ad1b7c0b54750338ad6371f0c7cbc108f2e16f 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)
|
| +
|
| +// 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,
|
|
|