OLD | NEW |
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_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ |
6 #define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ | 6 #define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 virtual void closeWindow() OVERRIDE; | 44 virtual void closeWindow() OVERRIDE; |
45 virtual void moveWindowBy(const WebKit::WebFloatPoint& offset) OVERRIDE; | 45 virtual void moveWindowBy(const WebKit::WebFloatPoint& offset) OVERRIDE; |
46 virtual void requestSetDockSide(const WebKit::WebString& side) OVERRIDE; | 46 virtual void requestSetDockSide(const WebKit::WebString& side) OVERRIDE; |
47 virtual void openInNewTab(const WebKit::WebString& side) OVERRIDE; | 47 virtual void openInNewTab(const WebKit::WebString& side) OVERRIDE; |
48 virtual void save(const WebKit::WebString& url, | 48 virtual void save(const WebKit::WebString& url, |
49 const WebKit::WebString& content, | 49 const WebKit::WebString& content, |
50 bool save_as) OVERRIDE; | 50 bool save_as) OVERRIDE; |
51 virtual void append(const WebKit::WebString& url, | 51 virtual void append(const WebKit::WebString& url, |
52 const WebKit::WebString& content) OVERRIDE; | 52 const WebKit::WebString& content) OVERRIDE; |
53 | 53 |
| 54 virtual void requestFileSystems() OVERRIDE; |
| 55 virtual void addFileSystem() OVERRIDE; |
| 56 virtual void removeFileSystem( |
| 57 const WebKit::WebString& fileSystemPath) OVERRIDE; |
| 58 |
54 void OnDispatchOnInspectorFrontend(const std::string& message); | 59 void OnDispatchOnInspectorFrontend(const std::string& message); |
55 | 60 |
56 scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_; | 61 scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_; |
57 | 62 |
58 DISALLOW_COPY_AND_ASSIGN(DevToolsClient); | 63 DISALLOW_COPY_AND_ASSIGN(DevToolsClient); |
59 }; | 64 }; |
60 | 65 |
61 } // namespace content | 66 } // namespace content |
62 | 67 |
63 #endif // CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ | 68 #endif // CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ |
OLD | NEW |