Fix cpp linter errors
authorKevin Sawicki <kevinsawicki@gmail.com>
Mon, 16 Jan 2017 17:26:07 +0000 (09:26 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Mon, 16 Jan 2017 17:26:07 +0000 (09:26 -0800)
atom/browser/ui/views/menu_layout.cc

index 687ffd3..d70a465 100644 (file)
@@ -16,10 +16,10 @@ namespace {
 #if defined(OS_WIN)
 gfx::Rect SubtractBorderSize(gfx::Rect bounds) {
   gfx::Point borderSize = gfx::Point(
-    GetSystemMetrics(SM_CXSIZEFRAME) - 1, // width
-    GetSystemMetrics(SM_CYSIZEFRAME) - 1  // height
-  );
-  gfx::Point dpiAdjustedSize = display::win::ScreenWin::ScreenToDIPPoint(borderSize);
+      GetSystemMetrics(SM_CXSIZEFRAME) - 1,   // width
+      GetSystemMetrics(SM_CYSIZEFRAME) - 1);  // height
+  gfx::Point dpiAdjustedSize =
+      display::win::ScreenWin::ScreenToDIPPoint(borderSize);
 
   bounds.set_x(bounds.x() + dpiAdjustedSize.x());
   bounds.set_y(bounds.y() + dpiAdjustedSize.y());