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

Side by Side Diff: content/browser/devtools/devtools_frontend_host.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.cc ('k') | content/browser/devtools/devtools_frontend_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRONTEND_HOST_H_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRONTEND_HOST_H_
6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRONTEND_HOST_H_ 6 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRONTEND_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 28 matching lines...) Expand all
39 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 39 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
40 40
41 void OnDispatchOnInspectorBackend(const std::string& message); 41 void OnDispatchOnInspectorBackend(const std::string& message);
42 void OnActivateWindow(); 42 void OnActivateWindow();
43 void OnCloseWindow(); 43 void OnCloseWindow();
44 void OnMoveWindow(int x, int y); 44 void OnMoveWindow(int x, int y);
45 void OnRequestSetDockSide(const std::string& side); 45 void OnRequestSetDockSide(const std::string& side);
46 void OnOpenInNewTab(const std::string& url); 46 void OnOpenInNewTab(const std::string& url);
47 void OnSave(const std::string& url, const std::string& content, bool save_as); 47 void OnSave(const std::string& url, const std::string& content, bool save_as);
48 void OnAppend(const std::string& url, const std::string& content); 48 void OnAppend(const std::string& url, const std::string& content);
49 void OnRequestFileSystems();
50 void OnAddFileSystem();
51 void OnRemoveFileSystem(const std::string& file_system_path);
49 52
50 WebContentsImpl* web_contents_; 53 WebContentsImpl* web_contents_;
51 DevToolsFrontendHostDelegate* delegate_; 54 DevToolsFrontendHostDelegate* delegate_;
52 DISALLOW_COPY_AND_ASSIGN(DevToolsFrontendHost); 55 DISALLOW_COPY_AND_ASSIGN(DevToolsFrontendHost);
53 }; 56 };
54 57
55 } // namespace content 58 } // namespace content
56 59
57 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRONTEND_HOST_H_ 60 #endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_FRONTEND_HOST_H_
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | content/browser/devtools/devtools_frontend_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698