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

@@ -98,8 +98,8 @@ int RunMain(HINSTANCE hInstance, int nCmdShow) {
context->GetRootWindowManager()->CreateRootWindow(
!command_line->HasSwitch(switches::kHideControls), // Show controls.
settings.windowless_rendering_enabled ? true : false,
CefRect(), // Use default system size.
std::string()); // Use default URL.
CefRect(), // Use default system size.
std::string()); // Use default URL.
// Run the message loop. This will block until Quit() is called by the
// RootWindowManager after all windows have been destroyed.
@@ -118,12 +118,11 @@ int RunMain(HINSTANCE hInstance, int nCmdShow) {
} // namespace
} // namespace client
// Program entry point function.
int APIENTRY wWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow) {
LPTSTR lpCmdLine,
int nCmdShow) {
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
return client::RunMain(hInstance, nCmdShow);