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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
// Copyright 2013 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/chromium_application.h"
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/android/tab_android.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/net/predictor.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/safe_browsing/protocol_manager.h"
#include "chrome/browser/safe_browsing/safe_browsing_service.h"
#include "chrome/common/chrome_content_client.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/web_contents.h"
#include "jni/ChromiumApplication_jni.h"
#include "net/cookies/cookie_monster.h"
#include "net/cookies/cookie_store.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_getter.h"
using base::android::ConvertUTF8ToJavaString;
namespace {
void FlushCookiesOnIOThread(
scoped_refptr<net::URLRequestContextGetter> getter) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
getter->GetURLRequestContext()
->cookie_store()
->GetCookieMonster()
->FlushStore(base::Closure());
}
void CommitPendingWritesForProfile(Profile* profile) {
// These calls are asynchronous. They may not finish (and may not even
// start!) before the Android OS kills our process. But we can't wait for them
// to finish because blocking the UI thread is illegal.
profile->GetPrefs()->CommitPendingWrite();
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&FlushCookiesOnIOThread,
make_scoped_refptr(profile->GetRequestContext())));
profile->GetNetworkPredictor()->SaveStateForNextStartupAndTrim();
}
void RemoveSessionCookiesOnIOThread(
scoped_refptr<net::URLRequestContextGetter> getter) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
getter->GetURLRequestContext()->cookie_store()->DeleteSessionCookiesAsync(
net::CookieStore::DeleteCallback());
}
void RemoveSessionCookiesForProfile(Profile* profile) {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&RemoveSessionCookiesOnIOThread,
make_scoped_refptr(profile->GetRequestContext())));
}
void ChangeAppStatusOnIOThread(SafeBrowsingService* sb_service,
jboolean foreground) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
SafeBrowsingProtocolManager* proto_manager = sb_service->protocol_manager();
if (proto_manager)
proto_manager->SetAppInForeground(foreground);
}
} // namespace
static jstring GetBrowserUserAgent(JNIEnv* env, jclass clazz) {
return ConvertUTF8ToJavaString(env, GetUserAgent()).Release();
}
static void FlushPersistentData(JNIEnv* env, jclass obj) {
// Commit the prending writes for all the loaded profiles.
std::vector<Profile*> loaded_profiles =
g_browser_process->profile_manager()->GetLoadedProfiles();
std::for_each(loaded_profiles.begin(), loaded_profiles.end(),
CommitPendingWritesForProfile);
if (g_browser_process->local_state())
g_browser_process->local_state()->CommitPendingWrite();
}
static void RemoveSessionCookies(JNIEnv* env, jclass obj) {
std::vector<Profile*> loaded_profiles =
g_browser_process->profile_manager()->GetLoadedProfiles();
std::for_each(loaded_profiles.begin(), loaded_profiles.end(),
RemoveSessionCookiesForProfile);
}
static void ChangeAppStatus(JNIEnv* env, jclass obj, jboolean foreground) {
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
base::Bind(&ChangeAppStatusOnIOThread,
base::Unretained(g_browser_process->safe_browsing_service()),
foreground));
}
namespace chrome {
namespace android {
// static
bool ChromiumApplication::RegisterBindings(JNIEnv* env) {
return RegisterNativesImpl(env);
}
void ChromiumApplication::OpenProtectedContentSettings() {
Java_ChromiumApplication_openProtectedContentSettings(
base::android::AttachCurrentThread(),
base::android::GetApplicationContext());
}
void ChromiumApplication::ShowAutofillSettings() {
Java_ChromiumApplication_showAutofillSettings(
base::android::AttachCurrentThread(),
base::android::GetApplicationContext());
}
void ChromiumApplication::ShowPasswordSettings() {
Java_ChromiumApplication_showPasswordSettings(
base::android::AttachCurrentThread(),
base::android::GetApplicationContext());
}
void ChromiumApplication::OpenClearBrowsingData(
content::WebContents* web_contents) {
TabAndroid* tab = TabAndroid::FromWebContents(web_contents);
DCHECK(tab);
Java_ChromiumApplication_openClearBrowsingData(
base::android::AttachCurrentThread(),
base::android::GetApplicationContext(),
tab->GetJavaObject().obj());
}
bool ChromiumApplication::AreParentalControlsEnabled() {
return Java_ChromiumApplication_areParentalControlsEnabled(
base::android::AttachCurrentThread(),
base::android::GetApplicationContext());
}
} // namespace android
} // namespace chrome
|