blob: 20177f37677075643c029ebc532223fbb1e5a4c2 [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 WEBRUNNER_BROWSER_CONTEXT_IMPL_H_
#define WEBRUNNER_BROWSER_CONTEXT_IMPL_H_
#include <lib/fidl/cpp/binding_set.h>
#include <memory>
#include <set>
#include "base/containers/unique_ptr_adapters.h"
#include "base/macros.h"
#include "webrunner/common/webrunner_export.h"
#include "webrunner/fidl/chromium/web/cpp/fidl.h"
namespace content {
class BrowserContext;
} // namespace content
namespace webrunner {
class FrameImpl;
// Implementation of Context from //webrunner/fidl/context.fidl.
// Owns a BrowserContext instance and uses it to create new WebContents/Frames.
// All created Frames are owned by this object.
class WEBRUNNER_EXPORT ContextImpl : public chromium::web::Context {
public:
// |browser_context| must outlive ContextImpl.
explicit ContextImpl(content::BrowserContext* browser_context);
// Tears down the Context, destroying any active Frames in the process.
~ContextImpl() override;
content::BrowserContext* browser_context_for_test() {
return browser_context_;
}
// Removes and destroys the specified |frame|.
void DestroyFrame(FrameImpl* frame);
// chromium::web::Context implementation.
void CreateFrame(fidl::InterfaceRequest<chromium::web::Frame> frame) override;
// Gets the underlying FrameImpl service object associated with a connected
// |frame_ptr| client.
FrameImpl* GetFrameImplForTest(chromium::web::FramePtr* frame_ptr);
private:
content::BrowserContext* browser_context_;
// Tracks all active FrameImpl instances, so that we can request their
// destruction when this ContextImpl is destroyed.
std::set<std::unique_ptr<FrameImpl>, base::UniquePtrComparator> frames_;
DISALLOW_COPY_AND_ASSIGN(ContextImpl);
};
} // namespace webrunner
#endif // WEBRUNNER_BROWSER_CONTEXT_IMPL_H_