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

Side by Side Diff: chrome/browser/bookmarks/bookmark_model_test_utils.cc

Issue 8759017: BookmarkModel cleanup. synced_node is now mobile_node and I'm nuking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk fix sync_integration_tests and extension test Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/bookmarks/bookmark_model_test_utils.h" 5 #include "chrome/browser/bookmarks/bookmark_model_test_utils.h"
6 6
7 #include "chrome/browser/bookmarks/bookmark_model.h" 7 #include "chrome/browser/bookmarks/bookmark_model.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 9
10 // static 10 // static
(...skipping 21 matching lines...) Expand all
32 // static 32 // static
33 void BookmarkModelTestUtils::AssertModelsEqual(BookmarkModel* expected, 33 void BookmarkModelTestUtils::AssertModelsEqual(BookmarkModel* expected,
34 BookmarkModel* actual, 34 BookmarkModel* actual,
35 bool check_ids) { 35 bool check_ids) {
36 AssertNodesEqual(expected->bookmark_bar_node(), 36 AssertNodesEqual(expected->bookmark_bar_node(),
37 actual->bookmark_bar_node(), 37 actual->bookmark_bar_node(),
38 check_ids); 38 check_ids);
39 AssertNodesEqual(expected->other_node(), 39 AssertNodesEqual(expected->other_node(),
40 actual->other_node(), 40 actual->other_node(),
41 check_ids); 41 check_ids);
42 AssertNodesEqual(expected->synced_node(), 42 AssertNodesEqual(expected->mobile_node(),
43 actual->synced_node(), 43 actual->mobile_node(),
44 check_ids); 44 check_ids);
45 } 45 }
OLDNEW
« no previous file with comments | « chrome/browser/bookmarks/bookmark_model.cc ('k') | chrome/browser/bookmarks/bookmark_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698