| Index: chrome/browser/cocoa/base_view.h
|
| diff --git a/chrome/browser/cocoa/base_view.h b/chrome/browser/cocoa/base_view.h
|
| index a7f6c68eb7c524d5ec95eb2e2877a029a9a02298..d59a2c2ffbc5f225f7a750ec2405171059748098 100644
|
| --- a/chrome/browser/cocoa/base_view.h
|
| +++ b/chrome/browser/cocoa/base_view.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| +#include "base/scoped_nsobject.h"
|
| #include "gfx/rect.h"
|
|
|
| // A view that provides common functionality that many views will need:
|
| @@ -17,6 +18,8 @@
|
| @interface BaseView : NSView {
|
| @private
|
| NSTrackingArea *trackingArea_;
|
| + BOOL dragging_;
|
| + scoped_nsobject<NSEvent> pendingExitEvent_;
|
| }
|
|
|
| - (id)initWithFrame:(NSRect)frame;
|
|
|