Fix most cpplint errors in devtools_window.h
It's still complaining about the non-const reference in BOOL&.
This commit is contained in:
parent
51a2779fdb
commit
779dfd2baf
1 changed files with 6 additions and 3 deletions
|
@ -8,9 +8,11 @@ namespace brightray {
|
|||
|
||||
class InspectableWebContentsViewWin;
|
||||
|
||||
class DevToolsWindow : public ui::WindowImpl, public base::SupportsWeakPtr<DevToolsWindow> {
|
||||
class DevToolsWindow : public ui::WindowImpl,
|
||||
public base::SupportsWeakPtr<DevToolsWindow> {
|
||||
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<DevTo
|
|||
END_MSG_MAP()
|
||||
|
||||
private:
|
||||
DevToolsWindow(InspectableWebContentsViewWin*);
|
||||
explicit DevToolsWindow(
|
||||
InspectableWebContentsViewWin* inspectable_web_contents_view_win);
|
||||
~DevToolsWindow();
|
||||
|
||||
LRESULT OnCreate(UINT message, WPARAM, LPARAM, BOOL& handled);
|
||||
|
|
Loading…
Reference in a new issue