Index: chrome/browser/autocomplete/history_provider.h |
diff --git a/chrome/browser/autocomplete/history_provider.h b/chrome/browser/autocomplete/history_provider.h |
index a1119a4042433dfc86a252796c2b6661ab4f1998..3cec58e6d1d7b6e9614401a34517512c08d0e520 100644 |
--- a/chrome/browser/autocomplete/history_provider.h |
+++ b/chrome/browser/autocomplete/history_provider.h |
@@ -20,6 +20,9 @@ class URLRow; |
// This class is a base class for the history autocomplete providers and |
// provides functions useful to all derived classes. |
class HistoryProvider : public AutocompleteProvider { |
+ public: |
+ virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE; |
+ |
protected: |
enum MatchType { |
NORMAL, |
@@ -31,8 +34,6 @@ class HistoryProvider : public AutocompleteProvider { |
Profile* profile, |
const char* name); |
- virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE; |
- |
// Fixes up user URL input to make it more possible to match against. Among |
// many other things, this takes care of the following: |
// * Prepending file:// to file URLs |