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
113
114
115
116
117
118
119
|
// Copyright (c) 2012 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/android/testshell/testshell_tab.h"
#include "base/android/jni_string.h"
#include "base/logging.h"
#include "chrome/browser/android/chrome_web_contents_delegate_android.h"
#include "chrome/browser/net/url_fixer_upper.h"
#include "chrome/browser/ui/android/window_android_helper.h"
#include "content/public/browser/android/content_view_core.h"
#include "content/public/browser/web_contents.h"
#include "googleurl/src/gurl.h"
#include "jni/TestShellTab_jni.h"
#include "ui/android/window_android.h"
using base::android::ConvertJavaStringToUTF8;
using base::android::ConvertUTF8ToJavaString;
using base::android::ScopedJavaLocalRef;
using chrome::android::ChromeWebContentsDelegateAndroid;
using content::WebContents;
using ui::WindowAndroid;
TestShellTab::TestShellTab(JNIEnv* env,
jobject obj,
WebContents* web_contents,
WindowAndroid* window_android)
: TabAndroid(env, obj),
web_contents_(web_contents) {
InitTabHelpers(web_contents);
WindowAndroidHelper::FromWebContents(web_contents)->
SetWindowAndroid(window_android);
}
TestShellTab::~TestShellTab() {
}
void TestShellTab::Destroy(JNIEnv* env, jobject obj) {
delete this;
}
WebContents* TestShellTab::GetWebContents() {
return web_contents_.get();
}
browser_sync::SyncedTabDelegate* TestShellTab::GetSyncedTabDelegate() {
NOTIMPLEMENTED();
return NULL;
}
void TestShellTab::OnReceivedHttpAuthRequest(jobject auth_handler,
const string16& host,
const string16& realm) {
NOTIMPLEMENTED();
}
void TestShellTab::ShowContextMenu(
const content::ContextMenuParams& params) {
NOTIMPLEMENTED();
}
void TestShellTab::ShowCustomContextMenu(
const content::ContextMenuParams& params,
const base::Callback<void(int)>& callback) {
NOTIMPLEMENTED();
}
void TestShellTab::AddShortcutToBookmark(
const GURL& url, const string16& title, const SkBitmap& skbitmap,
int r_value, int g_value, int b_value) {
NOTIMPLEMENTED();
}
void TestShellTab::EditBookmark(int64 node_id, bool is_folder) {
NOTIMPLEMENTED();
}
void TestShellTab::RunExternalProtocolDialog(const GURL& url) {
NOTIMPLEMENTED();
}
bool TestShellTab::RegisterTestShellTab(JNIEnv* env) {
return RegisterNativesImpl(env);
}
void TestShellTab::InitWebContentsDelegate(
JNIEnv* env,
jobject obj,
jobject web_contents_delegate) {
web_contents_delegate_.reset(
new ChromeWebContentsDelegateAndroid(env, web_contents_delegate));
web_contents_->SetDelegate(web_contents_delegate_.get());
}
ScopedJavaLocalRef<jstring> TestShellTab::FixupUrl(JNIEnv* env,
jobject obj,
jstring url) {
GURL fixed_url(URLFixerUpper::FixupURL(ConvertJavaStringToUTF8(env, url),
std::string()));
std::string fixed_spec;
if (fixed_url.is_valid())
fixed_spec = fixed_url.spec();
return ConvertUTF8ToJavaString(env, fixed_spec);
}
static jint Init(JNIEnv* env,
jobject obj,
jint web_contents_ptr,
jint window_android_ptr) {
TestShellTab* tab = new TestShellTab(
env,
obj,
reinterpret_cast<WebContents*>(web_contents_ptr),
reinterpret_cast<WindowAndroid*>(window_android_ptr));
return reinterpret_cast<jint>(tab);
}
|