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

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