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_ANDROID_PROVIDER_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ |
6 #define CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ | 6 #define CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/scoped_vector.h" | 16 #include "base/memory/scoped_vector.h" |
17 #include "chrome/browser/history/android/android_cache_database.h" | 17 #include "chrome/browser/history/android/android_cache_database.h" |
18 #include "chrome/browser/history/android/android_history_types.h" | |
19 #include "chrome/browser/history/android/sql_handler.h" | 18 #include "chrome/browser/history/android/sql_handler.h" |
20 #include "chrome/browser/history/history_backend.h" | 19 #include "chrome/browser/history/history_backend.h" |
21 #include "chrome/browser/history/history_notifications.h" | 20 #include "chrome/browser/history/history_notifications.h" |
| 21 #include "components/history/core/android/android_history_types.h" |
22 #include "sql/statement.h" | 22 #include "sql/statement.h" |
23 #include "sql/transaction.h" | 23 #include "sql/transaction.h" |
24 | 24 |
25 namespace history { | 25 namespace history { |
26 | 26 |
27 class AndroidProviderBackend; | 27 class AndroidProviderBackend; |
28 class AndroidURLsSQLHandler; | 28 class AndroidURLsSQLHandler; |
29 class HistoryClient; | 29 class HistoryClient; |
30 class HistoryDatabase; | 30 class HistoryDatabase; |
31 class ThumbnailDatabase; | 31 class ThumbnailDatabase; |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 bool initialized_; | 341 bool initialized_; |
342 | 342 |
343 HistoryBackend::Delegate* delegate_; | 343 HistoryBackend::Delegate* delegate_; |
344 | 344 |
345 DISALLOW_COPY_AND_ASSIGN(AndroidProviderBackend); | 345 DISALLOW_COPY_AND_ASSIGN(AndroidProviderBackend); |
346 }; | 346 }; |
347 | 347 |
348 } // namespace history | 348 } // namespace history |
349 | 349 |
350 #endif // CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ | 350 #endif // CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ |
OLD | NEW |