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