🔧 Linter fascism

This commit is contained in:
Felix Rieseberg 2017-08-21 16:52:59 -07:00
parent 6191e6e787
commit f0680587fa
3 changed files with 10 additions and 6 deletions

View file

@ -6,10 +6,11 @@
#define ATOM_BROWSER_NATIVE_BROWSER_VIEW_MAC_H_
#import <Cocoa/Cocoa.h>
#include <vector>
#include "atom/browser/native_browser_view.h"
#include "atom/common/draggable_region.h"
#include "base/mac/scoped_nsobject.h"
#include "atom/browser/native_browser_view.h"
namespace atom {
@ -22,7 +23,8 @@ class NativeBrowserViewMac : public NativeBrowserView {
void SetAutoResizeFlags(uint8_t flags) override;
void SetBounds(const gfx::Rect& bounds) override;
void SetBackgroundColor(SkColor color) override;
void UpdateDraggableRegions(const std::vector<gfx::Rect>& system_drag_exclude_areas) override;
void UpdateDraggableRegions(
const std::vector<gfx::Rect>& system_drag_exclude_areas) override;
private:
DISALLOW_COPY_AND_ASSIGN(NativeBrowserViewMac);