• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/shared/browser/client_app_browser.h"
6 
7 #include "tests/cefclient/browser/client_browser.h"
8 
9 namespace client {
10 
11 // static
RegisterCookieableSchemes(std::vector<std::string> & cookieable_schemes)12 void ClientAppBrowser::RegisterCookieableSchemes(
13     std::vector<std::string>& cookieable_schemes) {}
14 
15 // static
CreateDelegates(DelegateSet & delegates)16 void ClientAppBrowser::CreateDelegates(DelegateSet& delegates) {
17   browser::CreateDelegates(delegates);
18 }
19 
20 }  // namespace client
21