blob: dfac642e8e838c937f3b34750aa0955148348416 [file] [log] [blame]
// Copyright 2018 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 SERVICES_CONTENT_VIEW_IMPL_H_
#define SERVICES_CONTENT_VIEW_IMPL_H_
#include "base/macros.h"
#include "base/unguessable_token.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "services/content/public/cpp/buildflags.h"
#include "services/content/public/mojom/view.mojom.h"
#include "services/content/public/mojom/view_factory.mojom.h"
#include "ui/gfx/native_widget_types.h"
namespace views {
class RemoteViewProvider;
}
namespace content {
class Service;
class ViewDelegate;
class ViewImpl : public mojom::View {
public:
ViewImpl(Service* service,
mojom::ViewParamsPtr params,
mojom::ViewRequest request,
mojom::ViewClientPtr client);
~ViewImpl() override;
private:
// mojom::View:
void PrepareToEmbed(PrepareToEmbedCallback callback) override;
void Navigate(const GURL& url) override;
void OnEmbedTokenReceived(PrepareToEmbedCallback callback,
const base::UnguessableToken& token);
Service* const service_;
mojo::Binding<mojom::View> binding_;
mojom::ViewClientPtr client_;
std::unique_ptr<ViewDelegate> delegate_;
gfx::NativeView native_content_view_;
#if BUILDFLAG(ENABLE_AURA_CONTENT_VIEW_EMBEDDING)
std::unique_ptr<views::RemoteViewProvider> remote_view_provider_;
#endif
DISALLOW_COPY_AND_ASSIGN(ViewImpl);
};
} // namespace content
#endif // SERVICES_CONTENT_VIEW_IMPL_H_