blob: 66deda244f08e7fed1233e7896bdf5b96a177d9a [file] [log] [blame]
// Copyright 2019 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 "weblayer/browser/browser_controller_impl.h"
#include "base/logging.h"
#include "content/public/browser/interstitial_page.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/browser_controls_state.h"
#include "weblayer/browser/navigation_controller_impl.h"
#include "weblayer/browser/profile_impl.h"
#include "weblayer/public/browser_observer.h"
#if !defined(OS_ANDROID)
#include "ui/views/controls/webview/webview.h"
#endif
#if defined(OS_ANDROID)
#include "base/android/jni_string.h"
#include "weblayer/browser/java/jni/BrowserControllerImpl_jni.h"
#include "weblayer/browser/top_controls_container_view.h"
#endif
namespace weblayer {
BrowserControllerImpl::BrowserControllerImpl(ProfileImpl* profile,
const gfx::Size& initial_size)
: profile_(profile) {
content::WebContents::CreateParams create_params(
profile_->GetBrowserContext());
create_params.initial_size = initial_size;
web_contents_ = content::WebContents::Create(create_params);
web_contents_->SetDelegate(this);
Observe(web_contents_.get());
navigation_controller_ = std::make_unique<NavigationControllerImpl>(this);
}
BrowserControllerImpl::~BrowserControllerImpl() {
// Destruct this now to avoid it calling back when this object is partially
// destructed.
web_contents_.reset();
}
void BrowserControllerImpl::AddObserver(BrowserObserver* observer) {
observers_.AddObserver(observer);
}
void BrowserControllerImpl::RemoveObserver(BrowserObserver* observer) {
observers_.RemoveObserver(observer);
}
NavigationController* BrowserControllerImpl::GetNavigationController() {
return navigation_controller_.get();
}
#if !defined(OS_ANDROID)
void BrowserControllerImpl::AttachToView(views::WebView* web_view) {
web_view->SetWebContents(web_contents_.get());
web_contents_->Focus();
}
#endif
#if defined(OS_ANDROID)
static jlong JNI_BrowserControllerImpl_CreateBrowserController(JNIEnv* env,
jlong profile) {
// TODO: figure out size.
return reinterpret_cast<intptr_t>(new BrowserControllerImpl(
reinterpret_cast<ProfileImpl*>(profile), gfx::Size()));
}
static void JNI_BrowserControllerImpl_DeleteBrowserController(
JNIEnv* env,
jlong browser_controller) {
delete reinterpret_cast<BrowserControllerImpl*>(browser_controller);
}
base::android::ScopedJavaLocalRef<jobject>
BrowserControllerImpl::GetWebContents(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj) {
return web_contents_->GetJavaWebContents();
}
void BrowserControllerImpl::SetTopControlsContainerView(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& caller,
jlong native_top_controls_container_view) {
top_controls_container_view_ = reinterpret_cast<TopControlsContainerView*>(
native_top_controls_container_view);
}
#endif
void BrowserControllerImpl::LoadingStateChanged(content::WebContents* source,
bool to_different_document) {
bool is_loading = web_contents_->IsLoading();
for (auto& observer : observers_)
observer.LoadingStateChanged(is_loading, to_different_document);
}
void BrowserControllerImpl::DidNavigateMainFramePostCommit(
content::WebContents* web_contents) {
for (auto& observer : observers_)
observer.DisplayedURLChanged(web_contents->GetVisibleURL());
}
int BrowserControllerImpl::GetTopControlsHeight() {
#if defined(OS_ANDROID)
return top_controls_container_view_->GetTopControlsHeight();
#else
return 0;
#endif
}
void BrowserControllerImpl::DidFirstVisuallyNonEmptyPaint() {
for (auto& observer : observers_)
observer.FirstContentfulPaint();
}
void BrowserControllerImpl::DidFinishNavigation(
content::NavigationHandle* navigation_handle) {
#if defined(OS_ANDROID)
web_contents_->GetMainFrame()->UpdateBrowserControlsState(
content::BROWSER_CONTROLS_STATE_BOTH,
content::BROWSER_CONTROLS_STATE_SHOWN, false);
if (web_contents_->ShowingInterstitialPage()) {
web_contents_->GetInterstitialPage()
->GetMainFrame()
->UpdateBrowserControlsState(content::BROWSER_CONTROLS_STATE_SHOWN,
content::BROWSER_CONTROLS_STATE_SHOWN,
false);
}
#endif
}
std::unique_ptr<BrowserController> BrowserController::Create(
Profile* profile,
const gfx::Size& initial_size) {
return std::make_unique<BrowserControllerImpl>(
static_cast<ProfileImpl*>(profile), initial_size);
}
} // namespace weblayer