Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: webkit/support/drt_application_mac.h

Issue 8724004: [Mac] Move ScopedSendingEvent from content/common/mac to base/mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add CrAppControlProtocol support to CrDrtApplication Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698