| 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_ANDROID_PROVIDER_CHROME_BROWSER_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_PROVIDER_CHROME_BROWSER_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_ANDROID_PROVIDER_CHROME_BROWSER_PROVIDER_H_ | 6 #define CHROME_BROWSER_ANDROID_PROVIDER_CHROME_BROWSER_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "base/android/jni_helper.h" | 8 #include "base/android/jni_helper.h" |
| 9 #include "base/android/scoped_java_ref.h" | 9 #include "base/android/scoped_java_ref.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/synchronization/waitable_event.h" | 11 #include "base/synchronization/waitable_event.h" |
| 12 #include "chrome/browser/bookmarks/base_bookmark_model_observer.h" | 12 #include "chrome/browser/bookmarks/base_bookmark_model_observer.h" |
| 13 #include "chrome/browser/cancelable_request.h" | 13 #include "chrome/browser/common/cancelable_request.h" |
| 14 #include "chrome/browser/history/android/android_history_types.h" | 14 #include "chrome/browser/history/android/android_history_types.h" |
| 15 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
| 16 #include "content/public/browser/notification_registrar.h" | 16 #include "content/public/browser/notification_registrar.h" |
| 17 | 17 |
| 18 class AndroidHistoryProviderService; | 18 class AndroidHistoryProviderService; |
| 19 class FaviconService; | 19 class FaviconService; |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| 22 namespace history { | 22 namespace history { |
| 23 class TopSites; | 23 class TopSites; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 // Used to register/unregister notification observer. | 199 // Used to register/unregister notification observer. |
| 200 content::NotificationRegistrar notification_registrar_; | 200 content::NotificationRegistrar notification_registrar_; |
| 201 | 201 |
| 202 // Signaled if TemplateURLModel has been loaded. | 202 // Signaled if TemplateURLModel has been loaded. |
| 203 base::WaitableEvent template_loaded_event_; | 203 base::WaitableEvent template_loaded_event_; |
| 204 | 204 |
| 205 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserProvider); | 205 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserProvider); |
| 206 }; | 206 }; |
| 207 | 207 |
| 208 #endif // CHROME_BROWSER_ANDROID_PROVIDER_CHROME_BROWSER_PROVIDER_H_ | 208 #endif // CHROME_BROWSER_ANDROID_PROVIDER_CHROME_BROWSER_PROVIDER_H_ |
| OLD | NEW |