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