Fix cpplint errors in inspectable_web_contents_view_win.h
This commit is contained in:
parent
ae504c319e
commit
0271ff1964
1 changed files with 7 additions and 4 deletions
|
@ -12,8 +12,9 @@ class DevToolsWindow;
|
||||||
class InspectableWebContentsImpl;
|
class InspectableWebContentsImpl;
|
||||||
|
|
||||||
class InspectableWebContentsViewWin : public InspectableWebContentsView {
|
class InspectableWebContentsViewWin : public InspectableWebContentsView {
|
||||||
public:
|
public:
|
||||||
InspectableWebContentsViewWin(InspectableWebContentsImpl*);
|
explicit InspectableWebContentsViewWin(
|
||||||
|
InspectableWebContentsImpl* inspectable_web_contents_impl);
|
||||||
~InspectableWebContentsViewWin();
|
~InspectableWebContentsViewWin();
|
||||||
|
|
||||||
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
||||||
|
@ -21,9 +22,11 @@ public:
|
||||||
virtual void CloseDevTools() OVERRIDE;
|
virtual void CloseDevTools() OVERRIDE;
|
||||||
virtual bool SetDockSide(const std::string& side) 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.
|
// Owns us.
|
||||||
InspectableWebContentsImpl* inspectable_web_contents_;
|
InspectableWebContentsImpl* inspectable_web_contents_;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue