| OLD | NEW |
| 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/files/file_util.h" |
| 8 #include "base/format_macros.h" | 8 #include "base/format_macros.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "chrome/browser/history/history_unittest_base.h" | 11 #include "chrome/browser/history/history_unittest_base.h" |
| 12 #include "sql/connection.h" | 12 #include "sql/connection.h" |
| 13 | 13 |
| 14 namespace history { | 14 namespace history { |
| 15 | 15 |
| 16 HistoryUnitTestBase::~HistoryUnitTestBase() { | 16 HistoryUnitTestBase::~HistoryUnitTestBase() { |
| 17 } | 17 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 sql::Connection connection; | 33 sql::Connection connection; |
| 34 ASSERT_TRUE(connection.Open(db_path)); | 34 ASSERT_TRUE(connection.Open(db_path)); |
| 35 ASSERT_TRUE(connection.Execute(sql.c_str())); | 35 ASSERT_TRUE(connection.Execute(sql.c_str())); |
| 36 } | 36 } |
| 37 | 37 |
| 38 HistoryUnitTestBase::HistoryUnitTestBase() { | 38 HistoryUnitTestBase::HistoryUnitTestBase() { |
| 39 } | 39 } |
| 40 | 40 |
| 41 } // namespace history | 41 } // namespace history |
| OLD | NEW |