diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-19 00:51:13 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-19 00:51:13 +0000 |
commit | d03c61ae71ffdcd865d02884f187506c40e186e7 (patch) | |
tree | 4cf312823eeb48730c1e01ba31efb91249507558 /webkit/support/drt_application_mac.h | |
parent | cd91a007e765486a6b84222bdec474f75bc1fa33 (diff) | |
download | chromium_src-d03c61ae71ffdcd865d02884f187506c40e186e7.zip chromium_src-d03c61ae71ffdcd865d02884f187506c40e186e7.tar.gz chromium_src-d03c61ae71ffdcd865d02884f187506c40e186e7.tar.bz2 |
Try to get webkit tests green by letting DRT load CrApplication early.
This mirrors the change I made to test_shell in r69615
BUG=46929
TEST=webkit tests on waterfall are green
TBR=tony^work
Review URL: http://codereview.chromium.org/5987003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69664 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support/drt_application_mac.h')
-rw-r--r-- | webkit/support/drt_application_mac.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/webkit/support/drt_application_mac.h b/webkit/support/drt_application_mac.h new file mode 100644 index 0000000..64e91b9 --- /dev/null +++ b/webkit/support/drt_application_mac.h @@ -0,0 +1,17 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H +#define WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H + +#include "base/message_pump_mac.h" + +@interface CrDrtApplication : NSApplication<CrAppProtocol> { + @private + BOOL handlingSendEvent_; +} +- (BOOL)isHandlingSendEvent; +@end + +#endif // WEBKIT_SUPPORT_DRT_APPLICATION_MAC_H |