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

@ -38,9 +38,9 @@
#define CEF_INCLUDE_CEF_COOKIE_H_
#pragma once
#include <vector>
#include "include/cef_base.h"
#include "include/cef_callback.h"
#include <vector>
class CefCookieVisitor;
class CefSetCookieCallback;
@ -88,7 +88,7 @@ class CefCookieManager : public virtual CefBaseRefCounted {
/*--cef(optional_param=callback)--*/
virtual void SetSupportedSchemes(
const std::vector<CefString>& schemes,
CefRefPtr<CefCompletionCallback> callback) =0;
CefRefPtr<CefCompletionCallback> callback) = 0;
///
// Visit all cookies on the IO thread. The returned cookies are ordered by
@ -96,7 +96,7 @@ class CefCookieManager : public virtual CefBaseRefCounted {
// cannot be accessed.
///
/*--cef()--*/
virtual bool VisitAllCookies(CefRefPtr<CefCookieVisitor> visitor) =0;
virtual bool VisitAllCookies(CefRefPtr<CefCookieVisitor> visitor) = 0;
///
// Visit a subset of cookies on the IO thread. The results are filtered by the
@ -108,7 +108,7 @@ class CefCookieManager : public virtual CefBaseRefCounted {
/*--cef()--*/
virtual bool VisitUrlCookies(const CefString& url,
bool includeHttpOnly,
CefRefPtr<CefCookieVisitor> visitor) =0;
CefRefPtr<CefCookieVisitor> visitor) = 0;
///
// Sets a cookie given a valid URL and explicit user-provided cookie
@ -122,7 +122,7 @@ class CefCookieManager : public virtual CefBaseRefCounted {
/*--cef(optional_param=callback)--*/
virtual bool SetCookie(const CefString& url,
const CefCookie& cookie,
CefRefPtr<CefSetCookieCallback> callback) =0;
CefRefPtr<CefSetCookieCallback> callback) = 0;
///
// Delete all cookies that match the specified parameters. If both |url| and
@ -139,7 +139,7 @@ class CefCookieManager : public virtual CefBaseRefCounted {
optional_param=callback)--*/
virtual bool DeleteCookies(const CefString& url,
const CefString& cookie_name,
CefRefPtr<CefDeleteCookiesCallback> callback) =0;
CefRefPtr<CefDeleteCookiesCallback> callback) = 0;
///
// Sets the directory path that will be used for storing cookie data. If
@ -154,7 +154,7 @@ class CefCookieManager : public virtual CefBaseRefCounted {
/*--cef(optional_param=path,optional_param=callback)--*/
virtual bool SetStoragePath(const CefString& path,
bool persist_session_cookies,
CefRefPtr<CefCompletionCallback> callback) =0;
CefRefPtr<CefCompletionCallback> callback) = 0;
///
// Flush the backing store (if any) to disk. If |callback| is non-NULL it will
@ -162,10 +162,9 @@ class CefCookieManager : public virtual CefBaseRefCounted {
// Returns false if cookies cannot be accessed.
///
/*--cef(optional_param=callback)--*/
virtual bool FlushStore(CefRefPtr<CefCompletionCallback> callback) =0;
virtual bool FlushStore(CefRefPtr<CefCompletionCallback> callback) = 0;
};
///
// Interface to implement for visiting cookie values. The methods of this class
// will always be called on the IO thread.
@ -181,11 +180,12 @@ class CefCookieVisitor : public virtual CefBaseRefCounted {
// no cookies are found.
///
/*--cef()--*/
virtual bool Visit(const CefCookie& cookie, int count, int total,
bool& deleteCookie) =0;
virtual bool Visit(const CefCookie& cookie,
int count,
int total,
bool& deleteCookie) = 0;
};
///
// Interface to implement to be notified of asynchronous completion via
// CefCookieManager::SetCookie().
@ -198,10 +198,9 @@ class CefSetCookieCallback : public virtual CefBaseRefCounted {
// cookie was set successfully.
///
/*--cef()--*/
virtual void OnComplete(bool success) =0;
virtual void OnComplete(bool success) = 0;
};
///
// Interface to implement to be notified of asynchronous completion via
// CefCookieManager::DeleteCookies().
@ -214,7 +213,7 @@ class CefDeleteCookiesCallback : public virtual CefBaseRefCounted {
// number of cookies that were deleted or -1 if unknown.
///
/*--cef()--*/
virtual void OnComplete(int num_deleted) =0;
virtual void OnComplete(int num_deleted) = 0;
};
#endif // CEF_INCLUDE_CEF_COOKIE_H_