mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-11 17:15:57 +01:00
5c28259c31
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2014 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
15 lines
460 B
C++
15 lines
460 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/browser/client_handler_std.h"
|
|
|
|
namespace client {
|
|
|
|
ClientHandlerStd::ClientHandlerStd(Delegate* delegate,
|
|
const std::string& startup_url)
|
|
: ClientHandler(delegate, false, startup_url) {
|
|
}
|
|
|
|
} // namespace client
|