summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autocomplete/autocomplete.h
diff options
context:
space:
mode:
authorsky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-21 20:56:31 +0000
committersky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-21 20:56:31 +0000
commitcc63dea9d84632f8292a4af8eb9ab262d1e71800 (patch)
tree7227e175544d76e3bc57c8d833cdb2f7355bf3c1 /chrome/browser/autocomplete/autocomplete.h
parent9451fde471832f8da5026dcf47a341bb5c88d53e (diff)
downloadchromium_src-cc63dea9d84632f8292a4af8eb9ab262d1e71800.zip
chromium_src-cc63dea9d84632f8292a4af8eb9ab262d1e71800.tar.gz
chromium_src-cc63dea9d84632f8292a4af8eb9ab262d1e71800.tar.bz2
Fixes up the autocomplete providers to correctly update starred
state. I broke this in order to land my last mongo patch. HistoryContentsProvider is still lacking in one area. BUG=1256202 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1181 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete.h')
-rw-r--r--chrome/browser/autocomplete/autocomplete.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/autocomplete/autocomplete.h b/chrome/browser/autocomplete/autocomplete.h
index cdcc0d1..75b37d5 100644
--- a/chrome/browser/autocomplete/autocomplete.h
+++ b/chrome/browser/autocomplete/autocomplete.h
@@ -507,6 +507,10 @@ class AutocompleteProvider
static size_t max_matches() { return max_matches_; }
protected:
+ // Updates the starred state of each of the matches in matches_ from the
+ // profile's bookmark bar model.
+ void UpdateStarredStateOfMatches();
+
// The profile associated with the AutocompleteProvider. Reference is not
// owned by us.
Profile* profile_;