1 // Copyright (c) 2013 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_LIBCEF_BROWSER_NET_SCHEME_HANDLER_H_ 6 #define CEF_LIBCEF_BROWSER_NET_SCHEME_HANDLER_H_ 7 #pragma once 8 9 #include "include/cef_frame.h" 10 11 #include "content/public/browser/browser_context.h" 12 #include "url/gurl.h" 13 14 class CefIOThreadState; 15 16 namespace scheme { 17 18 // Register the internal scheme handlers that can be overridden. 19 void RegisterInternalHandlers(CefIOThreadState* iothread_state); 20 21 } // namespace scheme 22 23 #endif // CEF_LIBCEF_BROWSER_NET_SCHEME_HANDLER_H_ 24