Fix cpplint errors in inspectable_web_contents_view_win.h

This commit is contained in:
Adam Roben 2013-11-17 19:03:41 -05:00
parent ae504c319e
commit 0271ff1964

View file

@ -12,8 +12,9 @@ class DevToolsWindow;
class InspectableWebContentsImpl;
class InspectableWebContentsViewWin : public InspectableWebContentsView {
public:
InspectableWebContentsViewWin(InspectableWebContentsImpl*);
public:
explicit InspectableWebContentsViewWin(
InspectableWebContentsImpl* inspectable_web_contents_impl);
~InspectableWebContentsViewWin();
virtual gfx::NativeView GetNativeView() const OVERRIDE;
@ -21,9 +22,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:
// Owns us.
InspectableWebContentsImpl* inspectable_web_contents_;