diff --git a/brightray/browser/linux/inspectable_web_contents_view_linux.h b/brightray/browser/linux/inspectable_web_contents_view_linux.h index 94dfa97a1ad9..c6605b3939f5 100644 --- a/brightray/browser/linux/inspectable_web_contents_view_linux.h +++ b/brightray/browser/linux/inspectable_web_contents_view_linux.h @@ -10,8 +10,9 @@ namespace brightray { class InspectableWebContentsImpl; class InspectableWebContentsViewLinux : public InspectableWebContentsView { -public: - InspectableWebContentsViewLinux(InspectableWebContentsImpl*); + public: + explicit InspectableWebContentsViewLinux( + InspectableWebContentsImpl* inspectable_web_contents_impl); ~InspectableWebContentsViewLinux(); virtual gfx::NativeView GetNativeView() const OVERRIDE; @@ -19,9 +20,11 @@ public: virtual void CloseDevTools() OVERRIDE; virtual bool SetDockSide(const std::string& side) OVERRIDE; - InspectableWebContentsImpl* inspectable_web_contents() { return inspectable_web_contents_; } + InspectableWebContentsImpl* inspectable_web_contents() { + return inspectable_web_contents_; + } -private: + private: // Show the dev tools in their own window. If they're already shown // somewhere else, remove them cleanly and take any GtkPaned out of the // window.