blob: cc03508ecf1a3a66447f26c9a15d416512322f6b [file] [log] [blame]
[email protected]d47af2172011-12-01 23:56:171// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]d03c61a2010-12-19 00:51:132// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H
6#define WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H
7
8#include "base/message_pump_mac.h"
[email protected]d47af2172011-12-01 23:56:179#include "base/mac/scoped_sending_event.h"
[email protected]d03c61a2010-12-19 00:51:1310
[email protected]d47af2172011-12-01 23:56:1711@interface CrDrtApplication : NSApplication<CrAppProtocol,
12 CrAppControlProtocol> {
[email protected]d03c61a2010-12-19 00:51:1313 @private
14 BOOL handlingSendEvent_;
15}
[email protected]d47af2172011-12-01 23:56:1716// CrAppProtocol
[email protected]d03c61a2010-12-19 00:51:1317- (BOOL)isHandlingSendEvent;
[email protected]d47af2172011-12-01 23:56:1718
19// CrAppControlProtocol
20- (void)setHandlingSendEvent:(BOOL)handlingSendEvent;
[email protected]d03c61a2010-12-19 00:51:1321@end
22
23#endif // WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H