summaryrefslogtreecommitdiffstats
path: root/chrome/test/live_sync
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-19 20:06:08 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-19 20:06:08 +0000
commit037db000f041bc2d1d56bcfa7d794bb0731a8901 (patch)
tree980adcaef9eba00e9acd922b1dfc1259c738890d /chrome/test/live_sync
parent2b54eeb8250a162d30e65583b4d5b3783a4023c7 (diff)
downloadchromium_src-037db000f041bc2d1d56bcfa7d794bb0731a8901.zip
chromium_src-037db000f041bc2d1d56bcfa7d794bb0731a8901.tar.gz
chromium_src-037db000f041bc2d1d56bcfa7d794bb0731a8901.tar.bz2
Lands http://codereview.chromium.org/272036 for Thiago:
Rename GetType and SetType using the Unix style to match with the other usages in BookmarkNode. GetType -> type SetType -> set_type BUG=None TEST=None Review URL: http://codereview.chromium.org/297005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29443 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/live_sync')
-rw-r--r--chrome/test/live_sync/bookmark_model_verifier.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/live_sync/bookmark_model_verifier.cc b/chrome/test/live_sync/bookmark_model_verifier.cc
index b1d807b..92ac718 100644
--- a/chrome/test/live_sync/bookmark_model_verifier.cc
+++ b/chrome/test/live_sync/bookmark_model_verifier.cc
@@ -82,7 +82,7 @@ void BookmarkModelVerifier::VerifyNoDuplicates(BookmarkModel* model) {
while (iterator.has_next()) {
const BookmarkNode* node = iterator.Next();
std::vector<const BookmarkNode*> nodes;
- if (node->GetType() != BookmarkNode::URL) { continue; }
+ if (node->type() != BookmarkNode::URL) { continue; }
// Get nodes with same URL.
model->GetNodesByURL(node->GetURL(),&nodes);
EXPECT_TRUE(nodes.size()>=1);