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

Unified Diff: chrome/test/live_sync/bookmark_model_verifier.cc

Issue 7055021: Renames BookmarkModelObserver::BookmarkNodeFaviconLoaded to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk Created 9 years, 7 months 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
« no previous file with comments | « chrome/test/bookmark_load_observer.h ('k') | chrome/test/testing_profile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/live_sync/bookmark_model_verifier.cc
diff --git a/chrome/test/live_sync/bookmark_model_verifier.cc b/chrome/test/live_sync/bookmark_model_verifier.cc
index 235049e8ef582279d5e6cccc9c7cf839d3126dcf..8905c9f746542339cc2be73ba6a50477862ab5f5 100644
--- a/chrome/test/live_sync/bookmark_model_verifier.cc
+++ b/chrome/test/live_sync/bookmark_model_verifier.cc
@@ -32,28 +32,30 @@ class FaviconLoadObserver : public BookmarkModelObserver {
model_->RemoveObserver(this);
}
void WaitForFaviconLoad() { ui_test_utils::RunMessageLoop(); }
- virtual void Loaded(BookmarkModel* model) {}
+ virtual void Loaded(BookmarkModel* model) OVERRIDE {}
virtual void BookmarkNodeMoved(BookmarkModel* model,
const BookmarkNode* old_parent,
int old_index,
const BookmarkNode* new_parent,
- int new_index) {}
+ int new_index) OVERRIDE {}
virtual void BookmarkNodeAdded(BookmarkModel* model,
const BookmarkNode* parent,
- int index) {}
+ int index) OVERRIDE {}
virtual void BookmarkNodeRemoved(BookmarkModel* model,
const BookmarkNode* parent,
int old_index,
- const BookmarkNode* node) {}
+ const BookmarkNode* node) OVERRIDE {}
virtual void BookmarkNodeChanged(BookmarkModel* model,
- const BookmarkNode* node) {
+ const BookmarkNode* node) OVERRIDE {
if (model == model_ && node == node_)
model->GetFavicon(node);
}
- virtual void BookmarkNodeChildrenReordered(BookmarkModel* model,
- const BookmarkNode* node) {}
- virtual void BookmarkNodeFaviconLoaded(BookmarkModel* model,
- const BookmarkNode* node) {
+ virtual void BookmarkNodeChildrenReordered(
+ BookmarkModel* model,
+ const BookmarkNode* node) OVERRIDE {}
+ virtual void BookmarkNodeFaviconChanged(
+ BookmarkModel* model,
+ const BookmarkNode* node) OVERRIDE {
if (model == model_ && node == node_)
MessageLoopForUI::current()->Quit();
}
« no previous file with comments | « chrome/test/bookmark_load_observer.h ('k') | chrome/test/testing_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698