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

Unified Diff: content/public/browser/devtools_frontend_host_delegate.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 ALLOW_THIS_IN_INITIALIZER_LIST, fixed nits. 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/public/browser/devtools_frontend_host_delegate.h
diff --git a/content/public/browser/devtools_frontend_host_delegate.h b/content/public/browser/devtools_frontend_host_delegate.h
index 79d3d9f6d8cf7ddf5bc137d82d361dc1d5ef200e..54fb53eecc378d5ad0c9a227ae79369615cf87dd 100644
--- a/content/public/browser/devtools_frontend_host_delegate.h
+++ b/content/public/browser/devtools_frontend_host_delegate.h
@@ -42,6 +42,15 @@ class DevToolsFrontendHostDelegate {
virtual void AppendToFile(const std::string& url,
const std::string& content) = 0;
+ // Requests the list of file systems added for devtools previously.
Tom Sepez 2013/01/11 18:34:17 nit: Requests the list of filesystems previously a
+ virtual void RequestFileSystems() = 0;
+
+ // Shows a dialog to select a folder to add an isolated file system for.
Tom Sepez 2013/01/11 18:34:17 nit: Shows a dialog to select a folder to which an
+ virtual void AddFileSystem() = 0;
+
+ // Removes previously added devtools file system by given |file_system_path|.
Tom Sepez 2013/01/11 18:34:17 nit: Removes a previously added devtools filesyste
+ virtual void RemoveFileSystem(const std::string& file_system_path) = 0;
Tom Sepez 2013/01/11 18:34:17 nit: Removes a previously added devtools filesyste
+
// This method is called when the contents inspected by this devtools frontend
// is closing.
virtual void InspectedContentsClosing() = 0;

Powered by Google App Engine
This is Rietveld 408576698