Fix cpplint errors in inspectable_web_contents_view_linux.h
This commit is contained in:
parent
9f82d58761
commit
23bcf4099f
1 changed files with 7 additions and 4 deletions
|
@ -11,7 +11,8 @@ class InspectableWebContentsImpl;
|
||||||
|
|
||||||
class InspectableWebContentsViewLinux : public InspectableWebContentsView {
|
class InspectableWebContentsViewLinux : public InspectableWebContentsView {
|
||||||
public:
|
public:
|
||||||
InspectableWebContentsViewLinux(InspectableWebContentsImpl*);
|
explicit InspectableWebContentsViewLinux(
|
||||||
|
InspectableWebContentsImpl* inspectable_web_contents_impl);
|
||||||
~InspectableWebContentsViewLinux();
|
~InspectableWebContentsViewLinux();
|
||||||
|
|
||||||
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
||||||
|
@ -19,7 +20,9 @@ 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:
|
||||||
// Show the dev tools in their own window. If they're already shown
|
// Show the dev tools in their own window. If they're already shown
|
||||||
|
|
Loading…
Reference in a new issue