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.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/cefclient/browser/client_handler_std.h"
|
2015-01-27 01:03:25 +01:00
|
|
|
|
|
|
|
namespace client {
|
|
|
|
|
|
|
|
ClientHandlerStd::ClientHandlerStd(Delegate* delegate,
|
2022-03-22 19:31:30 +01:00
|
|
|
bool with_controls,
|
2015-01-27 01:03:25 +01:00
|
|
|
const std::string& startup_url)
|
2022-03-22 19:31:30 +01:00
|
|
|
: ClientHandler(delegate, /*is_osr=*/false, with_controls, startup_url) {}
|
2015-01-27 01:03:25 +01:00
|
|
|
|
|
|
|
} // namespace client
|