mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Apply clang-format to all C, C++ and ObjC files (issue #2171)
This commit is contained in:
@ -38,8 +38,8 @@
|
||||
#define CEF_INCLUDE_CEF_RESPONSE_H_
|
||||
#pragma once
|
||||
|
||||
#include "include/cef_base.h"
|
||||
#include <map>
|
||||
#include "include/cef_base.h"
|
||||
|
||||
///
|
||||
// Class used to represent a web response. The methods of this class may be
|
||||
@ -60,7 +60,7 @@ class CefResponse : public virtual CefBaseRefCounted {
|
||||
// Returns true if this object is read-only.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual bool IsReadOnly() =0;
|
||||
virtual bool IsReadOnly() = 0;
|
||||
|
||||
///
|
||||
// Get the response error code. Returns ERR_NONE if there was no error.
|
||||
@ -79,7 +79,7 @@ class CefResponse : public virtual CefBaseRefCounted {
|
||||
// Get the response status code.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual int GetStatus() =0;
|
||||
virtual int GetStatus() = 0;
|
||||
|
||||
///
|
||||
// Set the response status code.
|
||||
@ -91,7 +91,7 @@ class CefResponse : public virtual CefBaseRefCounted {
|
||||
// Get the response status text.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual CefString GetStatusText() =0;
|
||||
virtual CefString GetStatusText() = 0;
|
||||
|
||||
///
|
||||
// Set the response status text.
|
||||
@ -115,19 +115,19 @@ class CefResponse : public virtual CefBaseRefCounted {
|
||||
// Get the value for the specified response header field.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual CefString GetHeader(const CefString& name) =0;
|
||||
virtual CefString GetHeader(const CefString& name) = 0;
|
||||
|
||||
///
|
||||
// Get all response header fields.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void GetHeaderMap(HeaderMap& headerMap) =0;
|
||||
virtual void GetHeaderMap(HeaderMap& headerMap) = 0;
|
||||
|
||||
///
|
||||
// Set all response header fields.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void SetHeaderMap(const HeaderMap& headerMap) =0;
|
||||
virtual void SetHeaderMap(const HeaderMap& headerMap) = 0;
|
||||
};
|
||||
|
||||
#endif // CEF_INCLUDE_CEF_RESPONSE_H_
|
||||
|
Reference in New Issue
Block a user