blob: c4fadda4d34bafa3de9156e70ca5000cd33e4602 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "android_webview/renderer/aw_render_thread_observer.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h"
#include "third_party/blink/public/platform/web_cache.h"
#include "third_party/blink/public/platform/web_network_state_notifier.h"
namespace android_webview {
AwRenderThreadObserver::AwRenderThreadObserver() {
}
AwRenderThreadObserver::~AwRenderThreadObserver() {
}
void AwRenderThreadObserver::RegisterMojoInterfaces(
blink::AssociatedInterfaceRegistry* associated_interfaces) {
// base::Unretained can be used here because the associated_interfaces
// is owned by the RenderThread and will live for the duration of the
// RenderThread.
associated_interfaces->AddInterface<mojom::Renderer>(
base::BindRepeating(&AwRenderThreadObserver::OnRendererAssociatedRequest,
base::Unretained(this)));
}
void AwRenderThreadObserver::UnregisterMojoInterfaces(
blink::AssociatedInterfaceRegistry* associated_interfaces) {
associated_interfaces->RemoveInterface(mojom::Renderer::Name_);
}
void AwRenderThreadObserver::OnRendererAssociatedRequest(
mojo::PendingAssociatedReceiver<mojom::Renderer> receiver) {
receiver_.Bind(std::move(receiver));
}
void AwRenderThreadObserver::ClearCache() {
blink::WebCache::Clear();
}
void AwRenderThreadObserver::SetJsOnlineProperty(bool network_up) {
blink::WebNetworkStateNotifier::SetOnLine(network_up);
}
} // namespace android_webview