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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 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 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 15 matching lines...) Expand all
26 #define KeyboardEvent_h 26 #define KeyboardEvent_h
27 27
28 #include "core/CoreExport.h" 28 #include "core/CoreExport.h"
29 #include "core/events/KeyboardEventInit.h" 29 #include "core/events/KeyboardEventInit.h"
30 #include "core/events/UIEventWithKeyState.h" 30 #include "core/events/UIEventWithKeyState.h"
31 #include "public/platform/WebInputEvent.h" 31 #include "public/platform/WebInputEvent.h"
32 #include <memory> 32 #include <memory>
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class EventDispatcher;
37
38 class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState { 36 class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState {
39 DEFINE_WRAPPERTYPEINFO(); 37 DEFINE_WRAPPERTYPEINFO();
40 38
41 public: 39 public:
42 enum KeyLocationCode { 40 enum KeyLocationCode {
43 kDomKeyLocationStandard = 0x00, 41 kDomKeyLocationStandard = 0x00,
44 kDomKeyLocationLeft = 0x01, 42 kDomKeyLocationLeft = 0x01,
45 kDomKeyLocationRight = 0x02, 43 kDomKeyLocationRight = 0x02,
46 kDomKeyLocationNumpad = 0x03 44 kDomKeyLocationNumpad = 0x03
47 }; 45 };
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 String m_code; 120 String m_code;
123 String m_key; 121 String m_key;
124 unsigned m_location; 122 unsigned m_location;
125 }; 123 };
126 124
127 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); 125 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent);
128 126
129 } // namespace blink 127 } // namespace blink
130 128
131 #endif // KeyboardEvent_h 129 #endif // KeyboardEvent_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/EventDispatcher.h ('k') | third_party/WebKit/Source/core/fetch/ImageResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698