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

Unified Diff: chrome/browser/devtools/devtools_ui_bindings.h

Issue 2384343002: DevTools: improve DevTools file watcher to send added and removed paths (Closed)
Patch Set: drastically improving my C++ Created 4 years, 2 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: chrome/browser/devtools/devtools_ui_bindings.h
diff --git a/chrome/browser/devtools/devtools_ui_bindings.h b/chrome/browser/devtools/devtools_ui_bindings.h
index 938cc12fd8b63b61a10c0b9107cead9a113830ae..888823492e3e871ac3b78bc8406af9f313132aec 100644
--- a/chrome/browser/devtools/devtools_ui_bindings.h
+++ b/chrome/browser/devtools/devtools_ui_bindings.h
@@ -177,7 +177,9 @@ class DevToolsUIBindings : public DevToolsEmbedderMessageDispatcher::Delegate,
void FileSystemAdded(
const DevToolsFileHelper::FileSystem& file_system) override;
void FileSystemRemoved(const std::string& file_system_path) override;
- void FilePathsChanged(const std::vector<std::string>& file_paths) override;
+ void FilePathsChanged(const std::vector<std::string>& changed_paths,
+ const std::vector<std::string>& added_paths,
+ const std::vector<std::string>& removed_paths) override;
// DevToolsFileHelper callbacks.
void FileSavedAs(const std::string& url);

Powered by Google App Engine
This is Rietveld 408576698