1 // Copyright (c) 2012 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/common/scheme_test_common.h" 6 #include "tests/shared/common/client_app.h" 7 8 namespace client { 9 10 // static RegisterCustomSchemes(CefRawPtr<CefSchemeRegistrar> registrar)11void ClientApp::RegisterCustomSchemes(CefRawPtr<CefSchemeRegistrar> registrar) { 12 scheme_test::RegisterCustomSchemes(registrar); 13 } 14 15 } // namespace client 16