Fix typos in the comments that generate the documentation
This commit is contained in:
parent
552a3bf353
commit
4c5ccce85f
|
@ -33,7 +33,7 @@
|
||||||
// by hand. See the translator.README.txt file in the tools directory for
|
// by hand. See the translator.README.txt file in the tools directory for
|
||||||
// more information.
|
// more information.
|
||||||
//
|
//
|
||||||
// $hash=e4d28f171862beea61f00e46d7acb8ee4154b077$
|
// $hash=dbd087f353209506f042dd2598db753c905f11f0$
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef CEF_INCLUDE_CAPI_CEF_REQUEST_CAPI_H_
|
#ifndef CEF_INCLUDE_CAPI_CEF_REQUEST_CAPI_H_
|
||||||
|
@ -158,7 +158,7 @@ typedef struct _cef_request_t {
|
||||||
void(CEF_CALLBACK* set_flags)(struct _cef_request_t* self, int flags);
|
void(CEF_CALLBACK* set_flags)(struct _cef_request_t* self, int flags);
|
||||||
|
|
||||||
///
|
///
|
||||||
// Set the URL to the first party for cookies used in combination with
|
// Get the URL to the first party for cookies used in combination with
|
||||||
// cef_urlrequest_t.
|
// cef_urlrequest_t.
|
||||||
///
|
///
|
||||||
// The resulting string must be freed by calling cef_string_userfree_free().
|
// The resulting string must be freed by calling cef_string_userfree_free().
|
||||||
|
@ -166,7 +166,7 @@ typedef struct _cef_request_t {
|
||||||
struct _cef_request_t* self);
|
struct _cef_request_t* self);
|
||||||
|
|
||||||
///
|
///
|
||||||
// Get the URL to the first party for cookies used in combination with
|
// Set the URL to the first party for cookies used in combination with
|
||||||
// cef_urlrequest_t.
|
// cef_urlrequest_t.
|
||||||
///
|
///
|
||||||
void(CEF_CALLBACK* set_first_party_for_cookies)(struct _cef_request_t* self,
|
void(CEF_CALLBACK* set_first_party_for_cookies)(struct _cef_request_t* self,
|
||||||
|
|
|
@ -164,14 +164,14 @@ class CefRequest : public virtual CefBaseRefCounted {
|
||||||
virtual void SetFlags(int flags) = 0;
|
virtual void SetFlags(int flags) = 0;
|
||||||
|
|
||||||
///
|
///
|
||||||
// Set the URL to the first party for cookies used in combination with
|
// Get the URL to the first party for cookies used in combination with
|
||||||
// CefURLRequest.
|
// CefURLRequest.
|
||||||
///
|
///
|
||||||
/*--cef()--*/
|
/*--cef()--*/
|
||||||
virtual CefString GetFirstPartyForCookies() = 0;
|
virtual CefString GetFirstPartyForCookies() = 0;
|
||||||
|
|
||||||
///
|
///
|
||||||
// Get the URL to the first party for cookies used in combination with
|
// Set the URL to the first party for cookies used in combination with
|
||||||
// CefURLRequest.
|
// CefURLRequest.
|
||||||
///
|
///
|
||||||
/*--cef()--*/
|
/*--cef()--*/
|
||||||
|
|
Loading…
Reference in New Issue