🔧 Properly derive
This commit is contained in:
parent
7bfece1144
commit
47d652b5a2
2 changed files with 5 additions and 1 deletions
|
@ -15,4 +15,8 @@ NativeBrowserView::NativeBrowserView(
|
|||
|
||||
NativeBrowserView::~NativeBrowserView() {}
|
||||
|
||||
void NativeBrowserView::UpdateDraggableRegions(
|
||||
std::vector<gfx::Rect> system_drag_exclude_areas) {
|
||||
}
|
||||
|
||||
} // namespace atom
|
||||
|
|
|
@ -42,7 +42,7 @@ class NativeBrowserView {
|
|||
|
||||
// Called when the window needs to update its draggable region.
|
||||
virtual void UpdateDraggableRegions(
|
||||
std::vector<gfx::Rect> system_drag_exclude_areas) = 0;
|
||||
std::vector<gfx::Rect> system_drag_exclude_areas);
|
||||
|
||||
protected:
|
||||
explicit NativeBrowserView(
|
||||
|
|
Loading…
Reference in a new issue