2013-06-04 19:41:37 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-10-08 19:47:37 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
2015-11-26 03:53:12 +01:00
|
|
|
#ifndef CEF_LIBCEF_BROWSER_NET_SCHEME_HANDLER_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NET_SCHEME_HANDLER_H_
|
2012-10-08 19:47:37 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "include/cef_frame.h"
|
2013-03-12 21:23:24 +01:00
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2013-07-24 22:15:18 +02:00
|
|
|
#include "url/gurl.h"
|
2012-10-08 19:47:37 +02:00
|
|
|
|
2020-07-01 02:57:00 +02:00
|
|
|
class CefIOThreadState;
|
2015-03-02 21:25:14 +01:00
|
|
|
|
2012-10-08 19:47:37 +02:00
|
|
|
namespace scheme {
|
|
|
|
|
2013-03-12 21:23:24 +01:00
|
|
|
// Register the internal scheme handlers that can be overridden.
|
2020-07-01 02:57:00 +02:00
|
|
|
void RegisterInternalHandlers(CefIOThreadState* iothread_state);
|
2012-10-08 19:47:37 +02:00
|
|
|
|
|
|
|
} // namespace scheme
|
|
|
|
|
2015-11-26 03:53:12 +01:00
|
|
|
#endif // CEF_LIBCEF_BROWSER_NET_SCHEME_HANDLER_H_
|