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
|
// 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.
#ifndef CHROME_ANDROID_TESTSHELL_TESTSHELL_TAB_H_
#define CHROME_ANDROID_TESTSHELL_TESTSHELL_TAB_H_
#include <jni.h>
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/android/tab_android.h"
namespace browser_sync {
class SyncedTabDelegate;
}
namespace chrome {
struct NavigateParams;
}
namespace chrome {
namespace android {
class ChromeWebContentsDelegateAndroid;
}
}
namespace content {
class WebContents;
}
namespace ui {
class WindowAndroid;
}
class TestShellTab : public TabAndroid {
public:
TestShellTab(JNIEnv* env, jobject obj);
void Destroy(JNIEnv* env, jobject obj);
// --------------------------------------------------------------------------
// TabAndroid Methods
// --------------------------------------------------------------------------
virtual void OnReceivedHttpAuthRequest(jobject auth_handler,
const string16& host,
const string16& realm) OVERRIDE;
virtual void AddShortcutToBookmark(const GURL& url,
const string16& title,
const SkBitmap& skbitmap,
int r_value,
int g_value,
int b_value) OVERRIDE;
virtual void EditBookmark(int64 node_id,
const base::string16& node_title,
bool is_folder,
bool is_partner_bookmark) OVERRIDE;
virtual bool ShouldWelcomePageLinkToTermsOfService() OVERRIDE;
virtual void OnNewTabPageReady() OVERRIDE;
virtual void HandlePopupNavigation(chrome::NavigateParams* params) OVERRIDE;
// Register the Tab's native methods through JNI.
static bool RegisterTestShellTab(JNIEnv* env);
// --------------------------------------------------------------------------
// Methods called from Java via JNI
// --------------------------------------------------------------------------
base::android::ScopedJavaLocalRef<jstring> FixupUrl(JNIEnv* env,
jobject obj,
jstring url);
protected:
virtual ~TestShellTab();
private:
DISALLOW_COPY_AND_ASSIGN(TestShellTab);
};
#endif // CHROME_ANDROID_TESTSHELL_TESTSHELL_TAB_H_
|