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/android/content_view_util.h"
7 #include "base/android/jni_android.h"
8 #include "chrome/browser/browser_process.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_manager.h"
11 #include "content/public/browser/web_contents.h"
12 #include "jni/ContentViewUtil_jni.h"
14 static jlong
CreateNativeWebContents(
15 JNIEnv
* env
, jclass clazz
, jboolean incognito
, jboolean initially_hidden
) {
16 Profile
* profile
= g_browser_process
->profile_manager()->GetLastUsedProfile();
18 profile
= profile
->GetOffTheRecordProfile();
20 content::WebContents::CreateParams
params(profile
);
21 params
.initially_hidden
= static_cast<bool>(initially_hidden
);
22 return reinterpret_cast<intptr_t>(content::WebContents::Create(params
));
25 static void DestroyNativeWebContents(
26 JNIEnv
* env
, jclass clazz
, jlong web_contents_ptr
) {
27 content::WebContents
* web_contents
=
28 reinterpret_cast<content::WebContents
*>(web_contents_ptr
);
32 bool RegisterContentViewUtil(JNIEnv
* env
) {
33 return RegisterNativesImpl(env
);