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

Unified Diff: chrome/browser/autocomplete/history_contents_provider.h

Issue 5774004: Make HistoryContentsProvider results deletable (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Revising a couple checks & DCHECKS Created 10 years 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/autocomplete/history_contents_provider.h
diff --git a/chrome/browser/autocomplete/history_contents_provider.h b/chrome/browser/autocomplete/history_contents_provider.h
index 31b75ecba9022330b7d597f7520fc6b2f9a9e1b2..73501f1b9cf7c6d12d2d50fedb7be5c20bf91248 100644
--- a/chrome/browser/autocomplete/history_contents_provider.h
+++ b/chrome/browser/autocomplete/history_contents_provider.h
@@ -27,9 +27,11 @@ class HistoryContentsProvider : public AutocompleteProvider {
// As necessary asks the history service for the relevant results. When
// done SetResults is invoked.
virtual void Start(const AutocompleteInput& input,
- bool minimal_changes);
+ bool minimal_changes) OVERRIDE;
- virtual void Stop();
+ virtual void Stop() OVERRIDE;
+
+ virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE;
// Returns the total number of matches available in the database, up to
// kMaxMatchCount, whichever is smaller.

Powered by Google App Engine
This is Rietveld 408576698