1 // Copyright (c) 2016 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 #ifndef CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_BROWSER_H_ 6 #define CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_BROWSER_H_ 7 #pragma once 8 9 #include "include/cef_base.h" 10 #include "tests/shared/browser/client_app_browser.h" 11 12 namespace client { 13 namespace browser { 14 15 // Create the browser delegate. Called from client_app_delegates_browser.cc. 16 void CreateDelegates(ClientAppBrowser::DelegateSet& delegates); 17 18 } // namespace browser 19 } // namespace client 20 21 #endif // CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_BROWSER_H_ 22