1 // Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights 2 // reserved. Use of this source code is governed by a BSD-style license that 3 // can be found in the LICENSE file. 4 5 #include "tests/cefclient/browser/client_handler_std.h" 6 7 namespace client { 8 ClientHandlerStd(Delegate * delegate,const std::string & startup_url)9ClientHandlerStd::ClientHandlerStd(Delegate* delegate, 10 const std::string& startup_url) 11 : ClientHandler(delegate, false, startup_url) {} 12 13 } // namespace client 14