2015-01-31 05:41:36 +01:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#ifndef CEF_TESTS_SHARED_BROWSER_CLIENT_APP_BROWSER_H_
|
|
|
|
#define CEF_TESTS_SHARED_BROWSER_CLIENT_APP_BROWSER_H_
|
2015-01-31 05:41:36 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/common/client_app.h"
|
2015-01-31 05:41:36 +01:00
|
|
|
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
// Client app implementation for the browser process.
|
2017-05-17 11:29:28 +02:00
|
|
|
class ClientAppBrowser : public ClientApp, public CefBrowserProcessHandler {
|
2015-01-31 05:41:36 +01:00
|
|
|
public:
|
|
|
|
// Interface for browser delegates. All Delegates must be returned via
|
|
|
|
// CreateDelegates. Do not perform work in the Delegate
|
|
|
|
// constructor. See CefBrowserProcessHandler for documentation.
|
2017-02-09 23:07:43 +01:00
|
|
|
class Delegate : public virtual CefBaseRefCounted {
|
2015-01-31 05:41:36 +01:00
|
|
|
public:
|
2015-09-09 16:05:39 +02:00
|
|
|
virtual void OnBeforeCommandLineProcessing(
|
|
|
|
CefRefPtr<ClientAppBrowser> app,
|
|
|
|
CefRefPtr<CefCommandLine> command_line) {}
|
|
|
|
|
|
|
|
virtual void OnContextInitialized(CefRefPtr<ClientAppBrowser> app) {}
|
2015-01-31 05:41:36 +01:00
|
|
|
|
|
|
|
virtual void OnBeforeChildProcessLaunch(
|
|
|
|
CefRefPtr<ClientAppBrowser> app,
|
|
|
|
CefRefPtr<CefCommandLine> command_line) {}
|
|
|
|
|
|
|
|
virtual void OnRenderProcessThreadCreated(
|
|
|
|
CefRefPtr<ClientAppBrowser> app,
|
|
|
|
CefRefPtr<CefListValue> extra_info) {}
|
|
|
|
};
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
typedef std::set<CefRefPtr<Delegate>> DelegateSet;
|
2015-01-31 05:41:36 +01:00
|
|
|
|
|
|
|
ClientAppBrowser();
|
|
|
|
|
|
|
|
private:
|
2015-02-03 00:18:16 +01:00
|
|
|
// Creates all of the Delegate objects. Implemented by cefclient in
|
|
|
|
// client_app_delegates_browser.cc
|
2015-01-31 05:41:36 +01:00
|
|
|
static void CreateDelegates(DelegateSet& delegates);
|
|
|
|
|
2015-02-03 00:18:16 +01:00
|
|
|
// Create the Linux print handler. Implemented by cefclient in
|
|
|
|
// client_app_delegates_browser.cc
|
2015-01-31 05:41:36 +01:00
|
|
|
static CefRefPtr<CefPrintHandler> CreatePrintHandler();
|
|
|
|
|
|
|
|
// CefApp methods.
|
2015-08-18 00:14:59 +02:00
|
|
|
void OnBeforeCommandLineProcessing(
|
|
|
|
const CefString& process_type,
|
|
|
|
CefRefPtr<CefCommandLine> command_line) OVERRIDE;
|
2015-01-31 05:41:36 +01:00
|
|
|
CefRefPtr<CefBrowserProcessHandler> GetBrowserProcessHandler() OVERRIDE {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CefBrowserProcessHandler methods.
|
|
|
|
void OnContextInitialized() OVERRIDE;
|
|
|
|
void OnBeforeChildProcessLaunch(
|
|
|
|
CefRefPtr<CefCommandLine> command_line) OVERRIDE;
|
|
|
|
void OnRenderProcessThreadCreated(
|
|
|
|
CefRefPtr<CefListValue> extra_info) OVERRIDE;
|
|
|
|
CefRefPtr<CefPrintHandler> GetPrintHandler() OVERRIDE {
|
|
|
|
return print_handler_;
|
|
|
|
}
|
2016-05-04 20:00:03 +02:00
|
|
|
void OnScheduleMessagePumpWork(int64 delay) OVERRIDE;
|
2015-01-31 05:41:36 +01:00
|
|
|
|
|
|
|
// Set of supported Delegates.
|
|
|
|
DelegateSet delegates_;
|
|
|
|
|
|
|
|
CefRefPtr<CefPrintHandler> print_handler_;
|
|
|
|
|
|
|
|
IMPLEMENT_REFCOUNTING(ClientAppBrowser);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ClientAppBrowser);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace client
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#endif // CEF_TESTS_SHARED_BROWSER_CLIENT_APP_BROWSER_H_
|