1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/large_icon_bridge.h"
#include <jni.h>
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/android/scoped_java_ref.h"
#include "base/bind.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/favicon/large_icon_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_android.h"
#include "components/favicon/core/large_icon_service.h"
#include "components/favicon_base/fallback_icon_style.h"
#include "components/favicon_base/favicon_types.h"
#include "jni/LargeIconBridge_jni.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/android/java_bitmap.h"
#include "ui/gfx/codec/png_codec.h"
using base::android::ScopedJavaGlobalRef;
using base::android::ScopedJavaLocalRef;
using base::android::AttachCurrentThread;
using base::android::ConvertJavaStringToUTF16;
namespace {
const SkColor kDefaultBackgroundColor = SkColorSetRGB(0x78, 0x78, 0x78);
void OnLargeIconAvailable(
ScopedJavaGlobalRef<jobject>* j_callback,
const favicon_base::LargeIconResult& result) {
JNIEnv* env = AttachCurrentThread();
// Convert the result to a Java Bitmap.
SkBitmap bitmap;
ScopedJavaLocalRef<jobject> j_bitmap;
if (result.bitmap.is_valid()) {
gfx::PNGCodec::Decode(result.bitmap.bitmap_data->front(),
result.bitmap.bitmap_data->size(),
&bitmap);
if (!bitmap.isNull())
j_bitmap = gfx::ConvertToJavaBitmap(&bitmap);
}
jint background_color = kDefaultBackgroundColor;
if (result.fallback_icon_style)
background_color = result.fallback_icon_style->background_color;
Java_LargeIconCallback_onLargeIconAvailable(env,
j_callback->obj(),
j_bitmap.obj(),
background_color);
}
} // namespace
static jlong Init(JNIEnv* env, jclass clazz) {
return reinterpret_cast<intptr_t>(new LargeIconBridge());
}
LargeIconBridge::LargeIconBridge() {
}
LargeIconBridge::~LargeIconBridge() {
}
void LargeIconBridge::Destroy(JNIEnv* env, jobject obj) {
delete this;
}
jboolean LargeIconBridge::GetLargeIconForURL(
JNIEnv* env,
jobject obj,
jobject j_profile,
jstring j_page_url,
jint min_source_size_px,
jobject j_callback) {
Profile* profile = ProfileAndroid::FromProfileAndroid(j_profile);
if (!profile)
return false;
favicon::LargeIconService* large_icon_service =
LargeIconServiceFactory::GetForBrowserContext(profile);
if (!large_icon_service)
return false;
ScopedJavaGlobalRef<jobject>* j_global_callback =
new ScopedJavaGlobalRef<jobject>();
j_global_callback->Reset(env, j_callback);
favicon_base::LargeIconCallback callback_runner =
base::Bind(&OnLargeIconAvailable, base::Owned(j_global_callback));
large_icon_service->GetLargeIconOrFallbackStyle(
GURL(ConvertJavaStringToUTF16(env, j_page_url)),
min_source_size_px,
0, // Do not resize.
callback_runner,
&cancelable_task_tracker_);
return true;
}
// static
bool LargeIconBridge::RegisterLargeIconBridge(JNIEnv* env) {
return RegisterNativesImpl(env);
}
|