From 8f367f6b35559109761316aa66988c04eeda98ce Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Mon, 7 Jul 2014 14:42:30 -0400 Subject: [PATCH] More coding style fixes --- brightray/browser/win/devtools_window.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brightray/browser/win/devtools_window.cc b/brightray/browser/win/devtools_window.cc index bce83cc5fbdb..59857057d5a4 100644 --- a/brightray/browser/win/devtools_window.cc +++ b/brightray/browser/win/devtools_window.cc @@ -19,7 +19,7 @@ class WidgetDelegateView : public views::WidgetDelegateView { } virtual void DeleteDelegate() OVERRIDE { delete this; } - virtual views::View* GetContentsView() OVERRIDE{ return this; } + virtual views::View* GetContentsView() OVERRIDE { return this; } virtual bool CanResize() const OVERRIDE { return true; } virtual bool CanMaximize() const OVERRIDE { return true; } virtual base::string16 GetWindowTitle() const OVERRIDE { return L"Developer Tools"; } @@ -27,7 +27,7 @@ class WidgetDelegateView : public views::WidgetDelegateView { virtual gfx::Size GetMinimumSize() OVERRIDE { return gfx::Size(100, 100); } }; -} +} // namespace DevToolsWindow* DevToolsWindow::Create( InspectableWebContentsViewWin* controller) {