No need to use scoped_nsobject for id

This commit is contained in:
Cheng Zhao 2016-01-25 15:02:43 +08:00
parent 059d97e1aa
commit a83aee90e5
3 changed files with 23 additions and 11 deletions

View file

@ -126,7 +126,9 @@ class NativeWindowMac : public NativeWindow {
base::scoped_nsobject<AtomNSWindow> window_;
base::scoped_nsobject<AtomNSWindowDelegate> window_delegate_;
base::scoped_nsobject<id> event_monitor_;
// Event monitor for scroll wheel event.
id wheel_event_monitor_;
// The view that will fill the whole frameless window.
base::scoped_nsobject<FullSizeContentView> content_view_;