OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 class NSEvent; | 42 class NSEvent; |
43 class NSView; | 43 class NSView; |
44 #endif | 44 #endif |
45 #endif | 45 #endif |
46 | 46 |
47 namespace WebCore { | 47 namespace WebCore { |
48 | 48 |
49 class AtomicString; | 49 class AtomicString; |
50 class Clipboard; | 50 class Clipboard; |
51 class Cursor; | 51 class Cursor; |
| 52 class EventTargetNode; |
52 class Event; | 53 class Event; |
53 class FloatPoint; | 54 class FloatPoint; |
54 class FloatRect; | 55 class FloatRect; |
55 class Frame; | 56 class Frame; |
56 class HitTestRequest; | 57 class HitTestRequest; |
57 class HitTestResult; | 58 class HitTestResult; |
58 class HTMLFrameSetElement; | 59 class HTMLFrameSetElement; |
59 class KeyboardEvent; | 60 class KeyboardEvent; |
60 class MouseEventWithHitTestResults; | 61 class MouseEventWithHitTestResults; |
61 class Node; | 62 class Node; |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 bool m_sendingEventToSubview; | 346 bool m_sendingEventToSubview; |
346 int m_activationEventNumber; | 347 int m_activationEventNumber; |
347 #endif | 348 #endif |
348 | 349 |
349 }; | 350 }; |
350 | 351 |
351 } // namespace WebCore | 352 } // namespace WebCore |
352 | 353 |
353 #endif // EventHandler_h | 354 #endif // EventHandler_h |
354 | 355 |
OLD | NEW |