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

Side by Side Diff: third_party/WebKit/Source/core/events/Event.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (Closed)
Patch Set: Rebase. Created 3 years, 8 months 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 14 matching lines...) Expand all
25 #ifndef Event_h 25 #ifndef Event_h
26 #define Event_h 26 #define Event_h
27 27
28 #include "bindings/core/v8/ScriptWrappable.h" 28 #include "bindings/core/v8/ScriptWrappable.h"
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/dom/DOMHighResTimeStamp.h" 30 #include "core/dom/DOMHighResTimeStamp.h"
31 #include "core/dom/DOMTimeStamp.h" 31 #include "core/dom/DOMTimeStamp.h"
32 #include "core/events/EventInit.h" 32 #include "core/events/EventInit.h"
33 #include "core/events/EventPath.h" 33 #include "core/events/EventPath.h"
34 #include "platform/heap/Handle.h" 34 #include "platform/heap/Handle.h"
35 #include "wtf/Time.h" 35 #include "platform/wtf/Time.h"
36 #include "wtf/text/AtomicString.h" 36 #include "platform/wtf/text/AtomicString.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class DOMWrapperWorld; 40 class DOMWrapperWorld;
41 class EventDispatchMediator; 41 class EventDispatchMediator;
42 class EventTarget; 42 class EventTarget;
43 class ScriptState; 43 class ScriptState;
44 44
45 class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>, 45 class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>,
46 public ScriptWrappable { 46 public ScriptWrappable {
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 TimeTicks platform_time_stamp_; 306 TimeTicks platform_time_stamp_;
307 }; 307 };
308 308
309 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ 309 #define DEFINE_EVENT_TYPE_CASTS(typeName) \
310 DEFINE_TYPE_CASTS(typeName, Event, event, event->Is##typeName(), \ 310 DEFINE_TYPE_CASTS(typeName, Event, event, event->Is##typeName(), \
311 event.Is##typeName()) 311 event.Is##typeName())
312 312
313 } // namespace blink 313 } // namespace blink
314 314
315 #endif // Event_h 315 #endif // Event_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/ErrorEvent.h ('k') | third_party/WebKit/Source/core/events/EventDispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698