| OLD | NEW |
| 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 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_ANDROID_VISIT_SQL_HANDLER_H_ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_ANDROID_VISIT_SQL_HANDLER_H_ |
| 6 #define COMPONENTS_HISTORY_CORE_BROWSER_ANDROID_VISIT_SQL_HANDLER_H_ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_ANDROID_VISIT_SQL_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "components/history/core/browser/android/sql_handler.h" | 9 #include "components/history/core/browser/android/sql_handler.h" |
| 9 | 10 |
| 10 namespace base { | 11 namespace base { |
| 11 class Time; | 12 class Time; |
| 12 } | 13 } |
| 13 | 14 |
| 14 namespace history { | 15 namespace history { |
| 15 | 16 |
| 16 class URLDatabase; | 17 class URLDatabase; |
| 17 class VisitDatabase; | 18 class VisitDatabase; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 43 | 44 |
| 44 URLDatabase* url_db_; | 45 URLDatabase* url_db_; |
| 45 VisitDatabase* visit_db_; | 46 VisitDatabase* visit_db_; |
| 46 | 47 |
| 47 DISALLOW_COPY_AND_ASSIGN(VisitSQLHandler); | 48 DISALLOW_COPY_AND_ASSIGN(VisitSQLHandler); |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 } // namespace history. | 51 } // namespace history. |
| 51 | 52 |
| 52 #endif // COMPONENTS_HISTORY_CORE_BROWSER_ANDROID_VISIT_SQL_HANDLER_H_ | 53 #endif // COMPONENTS_HISTORY_CORE_BROWSER_ANDROID_VISIT_SQL_HANDLER_H_ |
| OLD | NEW |