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_UI_ANDROID_NAVIGATION_POPUP_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_NAVIGATION_POPUP_H_ |
6 #define CHROME_BROWSER_UI_ANDROID_NAVIGATION_POPUP_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_NAVIGATION_POPUP_H_ |
7 | 7 |
8 #include <jni.h> | 8 #include <jni.h> |
9 | 9 |
10 #include "base/android/jni_helper.h" | 10 #include "base/android/jni_weak_ref.h" |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/task/cancelable_task_tracker.h" | 12 #include "base/task/cancelable_task_tracker.h" |
13 | 13 |
14 class GURL; | 14 class GURL; |
15 | 15 |
16 namespace favicon_base { | 16 namespace favicon_base { |
17 struct FaviconImageResult; | 17 struct FaviconImageResult; |
18 } | 18 } |
19 | 19 |
20 // The native bridge for the history navigation popup that provides additional | 20 // The native bridge for the history navigation popup that provides additional |
(...skipping 16 matching lines...) Expand all Loading... |
37 | 37 |
38 private: | 38 private: |
39 JavaObjectWeakGlobalRef weak_jobject_; | 39 JavaObjectWeakGlobalRef weak_jobject_; |
40 | 40 |
41 base::CancelableTaskTracker cancelable_task_tracker_; | 41 base::CancelableTaskTracker cancelable_task_tracker_; |
42 | 42 |
43 DISALLOW_COPY_AND_ASSIGN(NavigationPopup); | 43 DISALLOW_COPY_AND_ASSIGN(NavigationPopup); |
44 }; | 44 }; |
45 | 45 |
46 #endif // CHROME_BROWSER_UI_ANDROID_NAVIGATION_POPUP_H_ | 46 #endif // CHROME_BROWSER_UI_ANDROID_NAVIGATION_POPUP_H_ |
OLD | NEW |