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.
|
|
|
|
|
2013-06-04 19:41:37 +02:00
|
|
|
#ifndef CEF_LIBCEF_BROWSER_SCHEME_HANDLER_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_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
|
|
|
|
|
|
|
#include "content/public/browser/content_browser_client.h"
|
2013-07-24 22:15:18 +02:00
|
|
|
#include "url/gurl.h"
|
2012-10-08 19:47:37 +02:00
|
|
|
|
2013-03-12 21:23:24 +01:00
|
|
|
namespace net {
|
2013-06-24 20:57:05 +02:00
|
|
|
class FtpTransactionFactory;
|
2013-03-12 21:23:24 +01:00
|
|
|
class URLRequestJobFactoryImpl;
|
|
|
|
}
|
|
|
|
|
2012-10-08 19:47:37 +02:00
|
|
|
namespace scheme {
|
|
|
|
|
2013-03-12 21:23:24 +01:00
|
|
|
// Install the internal scheme handlers provided by Chromium that cannot be
|
|
|
|
// overridden.
|
|
|
|
void InstallInternalProtectedHandlers(
|
|
|
|
net::URLRequestJobFactoryImpl* job_factory,
|
2013-06-24 20:57:05 +02:00
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
net::FtpTransactionFactory* ftp_transaction_factory);
|
2012-10-08 19:47:37 +02:00
|
|
|
|
2013-03-12 21:23:24 +01:00
|
|
|
// Register the internal scheme handlers that can be overridden.
|
2012-10-08 19:47:37 +02:00
|
|
|
void RegisterInternalHandlers();
|
|
|
|
|
|
|
|
// Used to fire any asynchronous content updates.
|
|
|
|
void DidFinishLoad(CefRefPtr<CefFrame> frame, const GURL& validated_url);
|
|
|
|
|
|
|
|
} // namespace scheme
|
|
|
|
|
2013-06-04 19:41:37 +02:00
|
|
|
#endif // CEF_LIBCEF_BROWSER_SCHEME_HANDLER_H_
|