Fix cpplint errors in inspectable_web_contents_view_mac.h
This commit is contained in:
parent
ea689b31a4
commit
cb684c5c6e
1 changed files with 13 additions and 8 deletions
|
@ -1,9 +1,11 @@
|
|||
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
||||
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
||||
|
||||
#import "browser/inspectable_web_contents_view.h"
|
||||
#include "browser/inspectable_web_contents_view.h"
|
||||
|
||||
#import "base/mac/scoped_nsobject.h"
|
||||
#include <string>
|
||||
|
||||
#include "base/mac/scoped_nsobject.h"
|
||||
|
||||
@class BRYInspectableWebContentsView;
|
||||
|
||||
|
@ -13,14 +15,17 @@ class InspectableWebContentsImpl;
|
|||
|
||||
class InspectableWebContentsViewMac : public InspectableWebContentsView {
|
||||
public:
|
||||
InspectableWebContentsViewMac(InspectableWebContentsImpl*);
|
||||
explicit InspectableWebContentsViewMac(
|
||||
InspectableWebContentsImpl* inspectable_web_contents_impl);
|
||||
|
||||
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
||||
virtual void ShowDevTools() OVERRIDE;
|
||||
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.
|
||||
|
|
Loading…
Reference in a new issue