• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2015 The Chromium Embedded Framework Authors.
2 // Portions copyright 2014 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 
6 #include "libcef/common/chrome/chrome_content_client_cef.h"
7 
8 #include "libcef/common/app_manager.h"
9 
10 ChromeContentClientCef::ChromeContentClientCef() = default;
11 ChromeContentClientCef::~ChromeContentClientCef() = default;
12 
AddAdditionalSchemes(Schemes * schemes)13 void ChromeContentClientCef::AddAdditionalSchemes(Schemes* schemes) {
14   ChromeContentClient::AddAdditionalSchemes(schemes);
15   CefAppManager::Get()->AddAdditionalSchemes(schemes);
16 }
17