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

Side by Side Diff: chrome/browser/history/url_database_unittest.cc

Issue 7353026: Move app/sql/* files to sql/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years, 5 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/browser/history/url_database.cc ('k') | chrome/browser/history/visit_database.cc » ('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) 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 "app/sql/connection.h"
6 #include "base/file_path.h" 5 #include "base/file_path.h"
7 #include "base/file_util.h" 6 #include "base/file_util.h"
8 #include "base/path_service.h" 7 #include "base/path_service.h"
9 #include "base/scoped_temp_dir.h" 8 #include "base/scoped_temp_dir.h"
10 #include "base/string_util.h" 9 #include "base/string_util.h"
11 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
12 #include "chrome/browser/history/url_database.h" 11 #include "chrome/browser/history/url_database.h"
12 #include "sql/connection.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 using base::Time; 15 using base::Time;
16 using base::TimeDelta; 16 using base::TimeDelta;
17 17
18 namespace history { 18 namespace history {
19 19
20 namespace { 20 namespace {
21 21
22 bool IsURLRowEqual(const URLRow& a, 22 bool IsURLRowEqual(const URLRow& a,
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 IconMappingEnumerator e; 261 IconMappingEnumerator e;
262 InitIconMappingEnumeratorForEverything(&e); 262 InitIconMappingEnumeratorForEverything(&e);
263 IconMapping icon_mapping; 263 IconMapping icon_mapping;
264 ASSERT_TRUE(e.GetNextIconMapping(&icon_mapping)); 264 ASSERT_TRUE(e.GetNextIconMapping(&icon_mapping));
265 ASSERT_EQ(url1, icon_mapping.page_url); 265 ASSERT_EQ(url1, icon_mapping.page_url);
266 ASSERT_EQ(icon_id, icon_mapping.icon_id); 266 ASSERT_EQ(icon_id, icon_mapping.icon_id);
267 ASSERT_FALSE(e.GetNextIconMapping(&icon_mapping)); 267 ASSERT_FALSE(e.GetNextIconMapping(&icon_mapping));
268 } 268 }
269 269
270 } // namespace history 270 } // namespace history
OLDNEW
« no previous file with comments | « chrome/browser/history/url_database.cc ('k') | chrome/browser/history/visit_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698