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

Side by Side Diff: components/bookmarks/core/browser/bookmark_utils_unittest.cc

Issue 277093003: Move bookmark_utils_unittest.cc into components/bookmarks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/components_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "components/bookmarks/core/browser/bookmark_utils.h" 5 #include "components/bookmarks/core/browser/bookmark_utils.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 EXPECT_EQ(2u, clone->GetMetaInfoMap()->size()); 381 EXPECT_EQ(2u, clone->GetMetaInfoMap()->size());
382 std::string value; 382 std::string value;
383 EXPECT_TRUE(clone->GetMetaInfo("somekey", &value)); 383 EXPECT_TRUE(clone->GetMetaInfo("somekey", &value));
384 EXPECT_EQ("somevalue", value); 384 EXPECT_EQ("somevalue", value);
385 EXPECT_TRUE(clone->GetMetaInfo("someotherkey", &value)); 385 EXPECT_TRUE(clone->GetMetaInfo("someotherkey", &value));
386 EXPECT_EQ("someothervalue", value); 386 EXPECT_EQ("someothervalue", value);
387 } 387 }
388 388
389 } // namespace 389 } // namespace
390 } // namespace bookmark_utils 390 } // namespace bookmark_utils
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698