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

Unified Diff: content/common/devtools_messages.h

Issue 11570081: Support file system access in DevTools with isolated file system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added fs name / root url generation in browser process as recommended by kinuko@ and addressed tsep… Created 7 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 side-by-side diff with in-line comments
Download patch
Index: content/common/devtools_messages.h
diff --git a/content/common/devtools_messages.h b/content/common/devtools_messages.h
index a472e3505ffdcf4a542390f94176b8933122638c..8033300a6a4869b40eaa79a6ed8f20a12d025cfe 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 filesystems previously added for devtools.
+IPC_MESSAGE_ROUTED0(DevToolsHostMsg_RequestFileSystems)
+
+// Shows a dialog to select a folder to which an isolated filesystem is added.
+IPC_MESSAGE_ROUTED0(DevToolsHostMsg_AddFileSystem)
+
+// Removes a previously added devtools filesystem given by |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,
« no previous file with comments | « content/browser/devtools/devtools_frontend_host.cc ('k') | content/public/browser/devtools_frontend_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698