From 779dfd2bafafee0a1b2d815f0f4d929c39345af2 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 19:01:36 -0500 Subject: [PATCH] Fix most cpplint errors in devtools_window.h It's still complaining about the non-const reference in BOOL&. --- brightray/browser/win/devtools_window.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/brightray/browser/win/devtools_window.h b/brightray/browser/win/devtools_window.h index 40f2d5afdb..738af0a427 100644 --- a/brightray/browser/win/devtools_window.h +++ b/brightray/browser/win/devtools_window.h @@ -8,9 +8,11 @@ namespace brightray { class InspectableWebContentsViewWin; -class DevToolsWindow : public ui::WindowImpl, public base::SupportsWeakPtr { +class DevToolsWindow : public ui::WindowImpl, + public base::SupportsWeakPtr { public: - static DevToolsWindow* Create(InspectableWebContentsViewWin*); + static DevToolsWindow* Create( + InspectableWebContentsViewWin* inspectable_web_contents_view_win); BEGIN_MSG_MAP_EX(DevToolsWindow) MESSAGE_HANDLER(WM_CREATE, OnCreate) @@ -19,7 +21,8 @@ class DevToolsWindow : public ui::WindowImpl, public base::SupportsWeakPtr