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