| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef COMPONENTS_OMNIBOX_BROWSER_HISTORY_TEST_UTIL_H_ | 5 #ifndef COMPONENTS_OMNIBOX_BROWSER_HISTORY_TEST_UTIL_H_ |
| 6 #define COMPONENTS_OMNIBOX_BROWSER_HISTORY_TEST_UTIL_H_ | 6 #define COMPONENTS_OMNIBOX_BROWSER_HISTORY_TEST_UTIL_H_ |
| 7 | 7 |
| 8 namespace sql { | |
| 9 class Connection; | |
| 10 } // namespace sql | |
| 11 | |
| 12 namespace history { | 8 namespace history { |
| 13 | 9 |
| 14 class HistoryDatabase; | 10 class HistoryDatabase; |
| 15 class URLRow; | 11 class URLRow; |
| 16 | 12 |
| 17 void AddFakeURLToHistoryDB(HistoryDatabase* history_db, const URLRow& url_row); | 13 void AddFakeURLToHistoryDB(HistoryDatabase* history_db, const URLRow& url_row); |
| 18 | 14 |
| 19 } // namespace history | 15 } // namespace history |
| 20 | 16 |
| 21 #endif // COMPONENTS_OMNIBOX_BROWSER_HISTORY_TEST_UTIL_H_ | 17 #endif // COMPONENTS_OMNIBOX_BROWSER_HISTORY_TEST_UTIL_H_ |
| OLD | NEW |