| Index: webkit/support/drt_application_mac.h
|
| diff --git a/webkit/support/drt_application_mac.h b/webkit/support/drt_application_mac.h
|
| index 64e91b9e64b044511f72455ca43e8610a3b746f0..fcc842e15d6cf1ce46d21ebd62ad8df913169158 100644
|
| --- a/webkit/support/drt_application_mac.h
|
| +++ b/webkit/support/drt_application_mac.h
|
| @@ -6,12 +6,18 @@
|
| #define WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H
|
|
|
| #include "base/message_pump_mac.h"
|
| +#include "base/mac/scoped_sending_event.h"
|
|
|
| -@interface CrDrtApplication : NSApplication<CrAppProtocol> {
|
| +@interface CrDrtApplication : NSApplication<CrAppProtocol,
|
| + CrAppControlProtocol> {
|
| @private
|
| BOOL handlingSendEvent_;
|
| }
|
| +// CrAppProtocol
|
| - (BOOL)isHandlingSendEvent;
|
| +
|
| +// CrAppControlProtocol
|
| +- (void)setHandlingSendEvent:(BOOL)handlingSendEvent;
|
| @end
|
|
|
| #endif // WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H
|
|
|