Fix code style to be <= 80 lines

This commit is contained in:
Frank Hale 2014-11-11 13:09:54 -05:00
parent 070d26e68e
commit e0dae4054a

View file

@ -229,8 +229,10 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,
#if defined(OS_WIN) #if defined(OS_WIN)
if (!has_frame_) { if (!has_frame_) {
// set Window style so that we get a minimize and maximize animation when frameless // Set Window style so that we get a minimize and maximize animation when
DWORD frame_style = WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION; // frameless.
DWORD frame_style = WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX |
WS_CAPTION;
::SetWindowLong(GetAcceleratedWidget(), GWL_STYLE, frame_style); ::SetWindowLong(GetAcceleratedWidget(), GWL_STYLE, frame_style);
} }
#endif #endif