| 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/history_notifications.h" | 17 #include "chrome/browser/history/history_notifications.h" |
| 18 #include "components/history/core/android/android_cache_database.h" | 18 #include "components/history/core/browser/android/android_cache_database.h" |
| 19 #include "components/history/core/android/android_history_types.h" | 19 #include "components/history/core/browser/android/android_history_types.h" |
| 20 #include "components/history/core/android/sql_handler.h" | 20 #include "components/history/core/browser/android/sql_handler.h" |
| 21 #include "sql/statement.h" | 21 #include "sql/statement.h" |
| 22 #include "sql/transaction.h" | 22 #include "sql/transaction.h" |
| 23 | 23 |
| 24 namespace history { | 24 namespace history { |
| 25 | 25 |
| 26 class AndroidProviderBackend; | 26 class AndroidProviderBackend; |
| 27 class AndroidURLsSQLHandler; | 27 class AndroidURLsSQLHandler; |
| 28 class HistoryBackendNotifier; | 28 class HistoryBackendNotifier; |
| 29 class HistoryClient; | 29 class HistoryClient; |
| 30 class HistoryDatabase; | 30 class HistoryDatabase; |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 bool initialized_; | 341 bool initialized_; |
| 342 | 342 |
| 343 HistoryBackendNotifier* notifier_; | 343 HistoryBackendNotifier* notifier_; |
| 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 |