Chromium Code Reviews| Index: content/renderer/devtools/devtools_client.cc |
| diff --git a/content/renderer/devtools/devtools_client.cc b/content/renderer/devtools/devtools_client.cc |
| index 09ec5063214426eed3462e335e2208e3081ea7e9..287799fd89db94b6ac5e0f452ebd863fb86041f3 100644 |
| --- a/content/renderer/devtools/devtools_client.cc |
| +++ b/content/renderer/devtools/devtools_client.cc |
| @@ -89,6 +89,20 @@ void DevToolsClient::append(const WebKit::WebString& url, |
| content.utf8())); |
| } |
| +void DevToolsClient::requestFileSystems() { |
| + Send(new DevToolsHostMsg_RequestFileSystems(routing_id())); |
| +} |
| + |
| +void DevToolsClient::addFileSystem() { |
| + Send(new DevToolsHostMsg_AddFileSystem(routing_id())); |
| +} |
| + |
| +void DevToolsClient::removeFileSystem(const WebString& fileSystemPath) { |
| + Send(new DevToolsHostMsg_RemoveFileSystem(routing_id(), |
| + fileSystemPath.utf8())); |
| +} |
| + |
| + |
|
kinuko
2013/01/10 07:33:58
nit: extra empty line
|
| void DevToolsClient::OnDispatchOnInspectorFrontend(const std::string& message) { |
| web_tools_frontend_->dispatchOnInspectorFrontend( |
| WebString::fromUTF8(message)); |