11 lines
480 B
C++
11 lines
480 B
C++
|
// 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.
|
||
|
|
||
|
#include "CEF/ClientHandlerStd.h"
|
||
|
|
||
|
ClientHandlerStd::ClientHandlerStd(Delegate* delegate,
|
||
|
bool with_controls,
|
||
|
const std::string& startup_url)
|
||
|
: ClientHandler(delegate, /*is_osr=*/false, with_controls, startup_url) {}
|