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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/android/navigation_popup.h"
7 #include "base/android/jni_string.h"
8 #include "base/android/scoped_java_ref.h"
10 #include "chrome/browser/browser_process.h"
11 #include "chrome/browser/favicon/favicon_service.h"
12 #include "chrome/browser/favicon/favicon_service_factory.h"
13 #include "chrome/browser/history/history_types.h"
14 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/profiles/profile_manager.h"
16 #include "chrome/common/url_constants.h"
17 #include "jni/NavigationPopup_jni.h"
18 #include "third_party/skia/include/core/SkBitmap.h"
19 #include "ui/base/resource/resource_bundle.h"
20 #include "ui/gfx/android/java_bitmap.h"
21 #include "ui/gfx/image/image.h"
22 #include "ui/resources/grit/ui_resources.h"
25 using base::android::ConvertUTF8ToJavaString
;
26 using base::android::ScopedJavaLocalRef
;
28 NavigationPopup::NavigationPopup(JNIEnv
* env
, jobject obj
)
29 : weak_jobject_(env
, obj
) {
32 NavigationPopup::~NavigationPopup() {
35 void NavigationPopup::Destroy(JNIEnv
* env
, jobject obj
) {
39 void NavigationPopup::FetchFaviconForUrl(JNIEnv
* env
,
42 Profile
* profile
= g_browser_process
->profile_manager()->GetLastUsedProfile();
43 FaviconService
* favicon_service
= FaviconServiceFactory::GetForProfile(
44 profile
, Profile::EXPLICIT_ACCESS
);
47 GURL
url(base::android::ConvertJavaStringToUTF16(env
, jurl
));
48 // TODO(tedchoc): Request higher favicons based on screen density instead of
49 // hardcoding kFaviconSize.
50 favicon_service
->GetFaviconImageForPageURL(
52 base::Bind(&NavigationPopup::OnFaviconDataAvailable
,
53 base::Unretained(this),
55 &cancelable_task_tracker_
);
58 void NavigationPopup::OnFaviconDataAvailable(
59 GURL navigation_entry_url
,
60 const favicon_base::FaviconImageResult
& image_result
) {
61 gfx::Image
image(image_result
.image
);
62 if (image
.IsEmpty()) {
63 ui::ResourceBundle
& rb
= ui::ResourceBundle::GetSharedInstance();
64 image
= rb
.GetImageNamed(IDR_DEFAULT_FAVICON
);
67 JNIEnv
* env
= base::android::AttachCurrentThread();
68 ScopedJavaLocalRef
<jobject
> obj(weak_jobject_
.get(env
));
72 ScopedJavaLocalRef
<jstring
> jurl(
73 ConvertUTF8ToJavaString(env
, navigation_entry_url
.spec()));
75 Java_NavigationPopup_onFaviconUpdated(
79 gfx::ConvertToJavaBitmap(image
.ToSkBitmap()).obj());
82 static jstring
GetHistoryUrl(JNIEnv
* env
, jclass clazz
) {
83 return ConvertUTF8ToJavaString(env
, chrome::kChromeUIHistoryURL
).Release();
86 static jlong
Init(JNIEnv
* env
, jobject obj
) {
87 NavigationPopup
* popup
= new NavigationPopup(env
, obj
);
88 return reinterpret_cast<intptr_t>(popup
);
92 bool NavigationPopup::RegisterNavigationPopup(JNIEnv
* env
) {
93 return RegisterNativesImpl(env
);