mirror of
https://github.com/electron/electron.git
synced 2026-01-28 00:38:35 -05:00
Fix cpplint errors in inspectable_web_contents_view_linux.h
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user