2015-01-27 01:03:25 +01:00
|
|
|
// Copyright (c) 2015 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.
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_HANDLER_STD_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_HANDLER_STD_H_
|
|
|
|
#pragma once
|
2015-01-27 01:03:25 +01:00
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/cefclient/browser/client_handler.h"
|
2015-01-27 01:03:25 +01:00
|
|
|
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
// Client handler implementation for windowed browsers. There will only ever be
|
|
|
|
// one browser per handler instance.
|
2015-01-30 19:55:55 +01:00
|
|
|
class ClientHandlerStd : public ClientHandler {
|
2015-01-27 01:03:25 +01:00
|
|
|
public:
|
2017-05-17 11:29:28 +02:00
|
|
|
ClientHandlerStd(Delegate* delegate, const std::string& startup_url);
|
2015-01-27 01:03:25 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Include the default reference counting implementation.
|
|
|
|
IMPLEMENT_REFCOUNTING(ClientHandlerStd);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ClientHandlerStd);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace client
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_HANDLER_STD_H_
|