OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2009, 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009, 2011, 2012 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 21 matching lines...) Expand all Loading... |
32 #ifndef Notification_h | 32 #ifndef Notification_h |
33 #define Notification_h | 33 #define Notification_h |
34 | 34 |
35 #include "bindings/v8/ScriptWrappable.h" | 35 #include "bindings/v8/ScriptWrappable.h" |
36 #include "core/dom/ActiveDOMObject.h" | 36 #include "core/dom/ActiveDOMObject.h" |
37 #include "core/events/EventNames.h" | 37 #include "core/events/EventNames.h" |
38 #include "core/events/EventTarget.h" | 38 #include "core/events/EventTarget.h" |
39 #include "core/loader/ThreadableLoaderClient.h" | 39 #include "core/loader/ThreadableLoaderClient.h" |
40 #include "platform/SharedBuffer.h" | 40 #include "platform/SharedBuffer.h" |
41 #include "core/platform/Timer.h" | 41 #include "core/platform/Timer.h" |
42 #include "core/platform/text/TextDirection.h" | |
43 #include "modules/notifications/NotificationClient.h" | 42 #include "modules/notifications/NotificationClient.h" |
| 43 #include "platform/text/TextDirection.h" |
44 #include "weborigin/KURL.h" | 44 #include "weborigin/KURL.h" |
45 #include "wtf/OwnPtr.h" | 45 #include "wtf/OwnPtr.h" |
46 #include "wtf/PassRefPtr.h" | 46 #include "wtf/PassRefPtr.h" |
47 #include "wtf/RefCounted.h" | 47 #include "wtf/RefCounted.h" |
48 #include "wtf/RefPtr.h" | 48 #include "wtf/RefPtr.h" |
49 #include "wtf/text/AtomicStringHash.h" | 49 #include "wtf/text/AtomicStringHash.h" |
50 | 50 |
51 namespace WebCore { | 51 namespace WebCore { |
52 | 52 |
53 class Dictionary; | 53 class Dictionary; |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 NotificationClient* m_notificationClient; | 172 NotificationClient* m_notificationClient; |
173 | 173 |
174 EventTargetData m_eventTargetData; | 174 EventTargetData m_eventTargetData; |
175 | 175 |
176 OwnPtr<Timer<Notification> > m_taskTimer; | 176 OwnPtr<Timer<Notification> > m_taskTimer; |
177 }; | 177 }; |
178 | 178 |
179 } // namespace WebCore | 179 } // namespace WebCore |
180 | 180 |
181 #endif // Notifications_h | 181 #endif // Notifications_h |
OLD | NEW |