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

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

Issue 5774004: Make HistoryContentsProvider results deletable (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Move DeleteMatch to common base class, update includes, etc. 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_url_provider.h
diff --git a/chrome/browser/autocomplete/history_url_provider.h b/chrome/browser/autocomplete/history_url_provider.h
index 58c4c259f08e0dfc5f9d3e98497d0fca01f2e962..0e4e5ff77d8a224e4a31b75db03eb682df518660 100644
--- a/chrome/browser/autocomplete/history_url_provider.h
+++ b/chrome/browser/autocomplete/history_url_provider.h
@@ -8,6 +8,7 @@
#include <string>
+#include "base/compiler_specific.h"
#include "chrome/browser/autocomplete/history_provider.h"
#include "chrome/browser/autocomplete/history_provider_util.h"
@@ -151,9 +152,8 @@ class HistoryURLProvider : public HistoryProvider {
// AutocompleteProvider
virtual void Start(const AutocompleteInput& input,
- bool minimal_changes);
- virtual void Stop();
- virtual void DeleteMatch(const AutocompleteMatch& match);
+ bool minimal_changes) OVERRIDE;
+ virtual void Stop() OVERRIDE;
// Runs the history query on the history thread, called by the history
// system. The history database MAY BE NULL in which case it is not

Powered by Google App Engine
This is Rietveld 408576698