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" | |
17 #include "base/supports_user_data.h" | 16 #include "base/supports_user_data.h" |
18 #include "components/history/core/browser/android/android_cache_database.h" | 17 #include "components/history/core/browser/android/android_cache_database.h" |
19 #include "components/history/core/browser/android/android_history_types.h" | 18 #include "components/history/core/browser/android/android_history_types.h" |
20 #include "components/history/core/browser/android/sql_handler.h" | 19 #include "components/history/core/browser/android/sql_handler.h" |
21 | 20 |
22 namespace history { | 21 namespace history { |
23 | 22 |
24 class AndroidProviderBackend; | 23 class AndroidProviderBackend; |
25 class AndroidURLsSQLHandler; | 24 class AndroidURLsSQLHandler; |
26 class HistoryBackend; | 25 class HistoryBackend; |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 bool initialized_; | 344 bool initialized_; |
346 | 345 |
347 HistoryBackendNotifier* notifier_; | 346 HistoryBackendNotifier* notifier_; |
348 | 347 |
349 DISALLOW_COPY_AND_ASSIGN(AndroidProviderBackend); | 348 DISALLOW_COPY_AND_ASSIGN(AndroidProviderBackend); |
350 }; | 349 }; |
351 | 350 |
352 } // namespace history | 351 } // namespace history |
353 | 352 |
354 #endif // CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ | 353 #endif // CHROME_BROWSER_HISTORY_ANDROID_ANDROID_PROVIDER_BACKEND_H_ |
OLD | NEW |