| Index: chrome/browser/devtools/devtools_window.h
|
| diff --git a/chrome/browser/devtools/devtools_window.h b/chrome/browser/devtools/devtools_window.h
|
| index ef199b5fefcb1318a9c59871955ee7c6a518d26d..92c50c08b51c90d67fc0093a4729da8ae1f30a5b 100644
|
| --- a/chrome/browser/devtools/devtools_window.h
|
| +++ b/chrome/browser/devtools/devtools_window.h
|
| @@ -142,7 +142,8 @@ class DevToolsWindow : private content::NotificationObserver,
|
| void UpdateTheme();
|
| void AddDevToolsExtensionsToClient();
|
| void CallClientFunction(const std::string& function_name,
|
| - const base::Value* arg);
|
| + const base::Value* arg1 = NULL,
|
| + const base::Value* arg2 = NULL);
|
| // Overridden from content::WebContentsDelegate.
|
| virtual content::WebContents* OpenURLFromTab(
|
| content::WebContents* source,
|
| @@ -182,10 +183,17 @@ class DevToolsWindow : private content::NotificationObserver,
|
| bool save_as) OVERRIDE;
|
| virtual void AppendToFile(const std::string& url,
|
| const std::string& content) OVERRIDE;
|
| + virtual void RequestFilesystems() OVERRIDE;
|
| + virtual void AddFilesystem() OVERRIDE;
|
| + virtual void RemoveFilesystem(const std::string& filesystem_path) OVERRIDE;
|
|
|
| // DevToolsFileHelper callbacks.
|
| void FileSavedAs(const std::string& url);
|
| void AppendedTo(const std::string& url);
|
| + void FilesystemsLoaded(
|
| + const std::vector<DevToolsFileHelper::Filesystem>& filesystems);
|
| + void FilesystemAdded(std::string error_string,
|
| + const DevToolsFileHelper::Filesystem& filesystem);
|
|
|
| void UpdateBrowserToolbar();
|
| bool IsDocked();
|
|
|