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

Side by Side Diff: Source/core/events/TextEvent.h

Issue 133133006: Update Event classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/events/SecurityPolicyViolationEvent.h ('k') | Source/core/events/TouchEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 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 17 matching lines...) Expand all
28 #define TextEvent_h 28 #define TextEvent_h
29 29
30 #include "core/events/TextEventInputType.h" 30 #include "core/events/TextEventInputType.h"
31 #include "core/events/ThreadLocalEventNames.h" 31 #include "core/events/ThreadLocalEventNames.h"
32 #include "core/events/UIEvent.h" 32 #include "core/events/UIEvent.h"
33 33
34 namespace WebCore { 34 namespace WebCore {
35 35
36 class DocumentFragment; 36 class DocumentFragment;
37 37
38 class TextEvent : public UIEvent { 38 class TextEvent FINAL : public UIEvent {
39 public: 39 public:
40 40
41 static PassRefPtr<TextEvent> create(); 41 static PassRefPtr<TextEvent> create();
42 static PassRefPtr<TextEvent> create(PassRefPtr<AbstractView>, const Stri ng& data, TextEventInputType = TextEventInputKeyboard); 42 static PassRefPtr<TextEvent> create(PassRefPtr<AbstractView>, const Stri ng& data, TextEventInputType = TextEventInputKeyboard);
43 static PassRefPtr<TextEvent> createForPlainTextPaste(PassRefPtr<Abstract View> view, const String& data, bool shouldSmartReplace); 43 static PassRefPtr<TextEvent> createForPlainTextPaste(PassRefPtr<Abstract View> view, const String& data, bool shouldSmartReplace);
44 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractV iew> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shou ldMatchStyle); 44 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractV iew> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shou ldMatchStyle);
45 static PassRefPtr<TextEvent> createForDrop(PassRefPtr<AbstractView> view , const String& data); 45 static PassRefPtr<TextEvent> createForDrop(PassRefPtr<AbstractView> view , const String& data);
46 46
47 virtual ~TextEvent(); 47 virtual ~TextEvent();
48 48
49 void initTextEvent(const AtomicString& type, bool canBubble, bool cancel able, PassRefPtr<AbstractView>, const String& data); 49 void initTextEvent(const AtomicString& type, bool canBubble, bool cancel able, PassRefPtr<AbstractView>, const String& data);
50 50
51 String data() const { return m_data; } 51 String data() const { return m_data; }
52 52
53 virtual const AtomicString& interfaceName() const; 53 virtual const AtomicString& interfaceName() const OVERRIDE;
54 54
55 bool isLineBreak() const { return m_inputType == TextEventInputLineBreak ; } 55 bool isLineBreak() const { return m_inputType == TextEventInputLineBreak ; }
56 bool isComposition() const { return m_inputType == TextEventInputComposi tion; } 56 bool isComposition() const { return m_inputType == TextEventInputComposi tion; }
57 bool isBackTab() const { return m_inputType == TextEventInputBackTab; } 57 bool isBackTab() const { return m_inputType == TextEventInputBackTab; }
58 bool isPaste() const { return m_inputType == TextEventInputPaste; } 58 bool isPaste() const { return m_inputType == TextEventInputPaste; }
59 bool isDrop() const { return m_inputType == TextEventInputDrop; } 59 bool isDrop() const { return m_inputType == TextEventInputDrop; }
60 60
61 bool shouldSmartReplace() const { return m_shouldSmartReplace; } 61 bool shouldSmartReplace() const { return m_shouldSmartReplace; }
62 bool shouldMatchStyle() const { return m_shouldMatchStyle; } 62 bool shouldMatchStyle() const { return m_shouldMatchStyle; }
63 DocumentFragment* pastingFragment() const { return m_pastingFragment.get (); } 63 DocumentFragment* pastingFragment() const { return m_pastingFragment.get (); }
(...skipping 16 matching lines...) Expand all
80 inline bool isTextEvent(const Event& event) 80 inline bool isTextEvent(const Event& event)
81 { 81 {
82 return event.type() == EventTypeNames::textInput && event.hasInterface(Event Names::TextEvent); 82 return event.type() == EventTypeNames::textInput && event.hasInterface(Event Names::TextEvent);
83 } 83 }
84 84
85 DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(even t)); 85 DEFINE_TYPE_CASTS(TextEvent, Event, event, isTextEvent(*event), isTextEvent(even t));
86 86
87 } // namespace WebCore 87 } // namespace WebCore
88 88
89 #endif // TextEvent_h 89 #endif // TextEvent_h
OLDNEW
« no previous file with comments | « Source/core/events/SecurityPolicyViolationEvent.h ('k') | Source/core/events/TouchEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698