mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-25 16:37:51 +01:00
15 lines
458 B
C++
15 lines
458 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 "cefclient/client_handler_std.h"
|
||
|
|
||
|
namespace client {
|
||
|
|
||
|
ClientHandlerStd::ClientHandlerStd(Delegate* delegate,
|
||
|
const std::string& startup_url)
|
||
|
: ClientHandlerSingle(delegate, false, startup_url) {
|
||
|
}
|
||
|
|
||
|
} // namespace client
|