blob: fb6328a67a00f8f6444c07f059f2612fbd6ce673 [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.
#ifndef CHROMECAST_BROWSER_CAST_WEB_SERVICE_H_
#define CHROMECAST_BROWSER_CAST_WEB_SERVICE_H_
#include <memory>
#include "base/callback.h"
#include "base/containers/flat_set.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "chromecast/browser/cast_web_view.h"
namespace base {
class SequencedTaskRunner;
} // namespace base
namespace content {
class BrowserContext;
class StoragePartition;
} // namespace content
namespace chromecast {
class CastWebViewFactory;
class CastWindowManager;
// This class dispenses CastWebView objects which are used to wrap WebContents
// in cast_shell. This class temporarily takes ownership of CastWebViews when
// they go out of scope, allowing us to keep the pages alive for extra time if
// needed. CastWebService allows us to synchronously destroy all pages when the
// system is shutting down, preventing use of freed browser resources.
class CastWebService {
public:
CastWebService(content::BrowserContext* browser_context,
CastWebViewFactory* web_view_factory,
CastWindowManager* window_manager);
~CastWebService();
CastWebView::Scoped CreateWebView(
const CastWebView::CreateParams& params,
scoped_refptr<content::SiteInstance> site_instance,
const GURL& initial_url);
CastWebView::Scoped CreateWebView(const CastWebView::CreateParams& params,
const GURL& initial_url);
std::unique_ptr<CastContentWindow> CreateWindow(
const CastContentWindow::CreateParams& params);
void FlushDomLocalStorage();
// |callback| is called when data deletion is done or at least the deletion
// is scheduled.
void ClearLocalStorage(base::OnceClosure callback);
void StopGpuProcess(base::OnceClosure callback) const;
private:
void OwnerDestroyed(CastWebView* web_view);
void DeleteWebView(CastWebView* web_view);
content::BrowserContext* const browser_context_;
CastWebViewFactory* const web_view_factory_;
CastWindowManager* const window_manager_;
base::flat_set<std::unique_ptr<CastWebView>> web_views_;
const scoped_refptr<base::SequencedTaskRunner> task_runner_;
base::WeakPtr<CastWebService> weak_ptr_;
SEQUENCE_CHECKER(sequence_checker_);
base::WeakPtrFactory<CastWebService> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(CastWebService);
};
} // namespace chromecast
#endif // CHROMECAST_BROWSER_CAST_WEB_SERVICE_H_