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

@ -36,7 +36,9 @@ class MainMessageLoopMultithreadedWin : public MainMessageLoop {
static HWND CreateMessageWindow(HINSTANCE hInstance);
// Window procedure for the message window.
static LRESULT CALLBACK MessageWndProc(HWND hWnd, UINT message, WPARAM wParam,
static LRESULT CALLBACK MessageWndProc(HWND hWnd,
UINT message,
WPARAM wParam,
LPARAM lParam);
void PostTaskInternal(CefRefPtr<CefTask> task);
@ -51,7 +53,7 @@ class MainMessageLoopMultithreadedWin : public MainMessageLoop {
// Must be protected by |lock_|.
HWND message_hwnd_;
std::queue<CefRefPtr<CefTask> > queued_tasks_;
std::queue<CefRefPtr<CefTask>> queued_tasks_;
DISALLOW_COPY_AND_ASSIGN(MainMessageLoopMultithreadedWin);
};