Add DevToolsFrontendHostDelegate indexing methods from Chrome 30

See http://src.chromium.org/viewvc/chrome?view=revision&revision=215622.
This commit is contained in:
Adam Roben 2013-10-07 15:29:17 -04:00
parent 4d59060657
commit aa4f991659
2 changed files with 14 additions and 0 deletions

View file

@ -123,6 +123,15 @@ void InspectableWebContentsImpl::AddFileSystem() {
void InspectableWebContentsImpl::RemoveFileSystem(const std::string& file_system_path) {
}
void InspectableWebContentsImpl::IndexPath(int request_id, const std::string& file_system_path) {
}
void InspectableWebContentsImpl::StopIndexing(int request_id) {
}
void InspectableWebContentsImpl::SearchInPath(int request_id, const std::string& file_system_path, const std::string& query) {
}
void InspectableWebContentsImpl::InspectedContentsClosing() {
}

View file

@ -60,6 +60,11 @@ private:
virtual void RequestFileSystems() OVERRIDE;
virtual void AddFileSystem() OVERRIDE;
virtual void RemoveFileSystem(const std::string& file_system_path) OVERRIDE;
virtual void IndexPath(int request_id, const std::string& file_system_path) OVERRIDE;
virtual void StopIndexing(int request_id) OVERRIDE;
virtual void SearchInPath(int request_id,
const std::string& file_system_path,
const std::string& query) OVERRIDE;
virtual void InspectedContentsClosing() OVERRIDE;
// content::WebContentsObserver