Apply clang-format to all C, C++ and ObjC files (issue #2171)

This commit is contained in:
Marshall Greenblatt
2017-05-17 11:29:28 +02:00
parent a566549e04
commit 31d9407ee2
1331 changed files with 33014 additions and 32258 deletions

View File

@@ -42,12 +42,11 @@
#include "include/cef_browser.h"
#include "include/cef_frame.h"
#include "include/cef_request.h"
#include "include/cef_response.h"
#include "include/cef_resource_handler.h"
#include "include/cef_response.h"
class CefSchemeHandlerFactory;
///
// Register a scheme handler factory with the global request context. An empty
// |domain_name| value for a standard scheme will cause the factory to match all
@@ -77,7 +76,6 @@ bool CefRegisterSchemeHandlerFactory(
/*--cef()--*/
bool CefClearSchemeHandlerFactories();
///
// Class that manages custom scheme registrations.
///
@@ -150,10 +148,9 @@ class CefSchemeRegistrar : public CefBaseScoped {
bool is_display_isolated,
bool is_secure,
bool is_cors_enabled,
bool is_csp_bypassing) =0;
bool is_csp_bypassing) = 0;
};
///
// Class that creates CefResourceHandler instances for handling scheme requests.
// The methods of this class will always be called on the IO thread.
@@ -174,7 +171,7 @@ class CefSchemeHandlerFactory : public virtual CefBaseRefCounted {
CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
const CefString& scheme_name,
CefRefPtr<CefRequest> request) =0;
CefRefPtr<CefRequest> request) = 0;
};
#endif // CEF_INCLUDE_CEF_SCHEME_H_