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 #ifndef CEF_LIBCEF_COMMON_CHROME_CHROME_CONTENT_CLIENT_CEF_H_ 7 #define CEF_LIBCEF_COMMON_CHROME_CHROME_CONTENT_CLIENT_CEF_H_ 8 9 #include "chrome/common/chrome_content_client.h" 10 11 class ChromeContentClientCef : public ChromeContentClient { 12 public: 13 ChromeContentClientCef(); 14 ~ChromeContentClientCef() override; 15 16 // content::ContentClient overrides. 17 void AddAdditionalSchemes(Schemes* schemes) override; 18 }; 19 20 #endif // CEF_LIBCEF_COMMON_CHROME_CHROME_CONTENT_CLIENT_CEF_H_ 21