diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 20:56:31 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 20:56:31 +0000 |
commit | cc63dea9d84632f8292a4af8eb9ab262d1e71800 (patch) | |
tree | 7227e175544d76e3bc57c8d833cdb2f7355bf3c1 /chrome/browser/bookmark_bar_model.h | |
parent | 9451fde471832f8da5026dcf47a341bb5c88d53e (diff) | |
download | chromium_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/bookmark_bar_model.h')
-rw-r--r-- | chrome/browser/bookmark_bar_model.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/bookmark_bar_model.h b/chrome/browser/bookmark_bar_model.h index a481004..1d35582 100644 --- a/chrome/browser/bookmark_bar_model.h +++ b/chrome/browser/bookmark_bar_model.h @@ -101,6 +101,9 @@ class BookmarkBarNode : public ChromeViews::TreeNode<BookmarkBarNode> { // Is this a URL? bool is_url() const { return type_ == history::StarredEntry::URL; } + // TODO(sky): Consider adding last visit time here, it'll greatly simplify + // HistoryContentsProvider. + private: // Resets the properties of the node from the supplied entry. void Reset(const history::StarredEntry& entry); |