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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/events/ClipboardEvent.h ('k') | Source/core/events/CustomEvent.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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& t ype, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data) 43 static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& t ype, PassRefPtrWillBeRawPtr<AbstractView> view, const String& data)
44 { 44 {
45 return adoptRefWillBeNoop(new CompositionEvent(type, view, data)); 45 return adoptRefWillBeNoop(new CompositionEvent(type, view, data));
46 } 46 }
47 47
48 static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& t ype, const CompositionEventInit& initializer) 48 static PassRefPtrWillBeRawPtr<CompositionEvent> create(const AtomicString& t ype, const CompositionEventInit& initializer)
49 { 49 {
50 return adoptRefWillBeNoop(new CompositionEvent(type, initializer)); 50 return adoptRefWillBeNoop(new CompositionEvent(type, initializer));
51 } 51 }
52 52
53 virtual ~CompositionEvent(); 53 ~CompositionEvent() override;
54 54
55 void initCompositionEvent(const AtomicString& type, bool canBubble, bool can celable, PassRefPtrWillBeRawPtr<AbstractView>, const String& data); 55 void initCompositionEvent(const AtomicString& type, bool canBubble, bool can celable, PassRefPtrWillBeRawPtr<AbstractView>, const String& data);
56 56
57 String data() const { return m_data; } 57 String data() const { return m_data; }
58 58
59 virtual const AtomicString& interfaceName() const override; 59 const AtomicString& interfaceName() const override;
60 60
61 DECLARE_VIRTUAL_TRACE(); 61 DECLARE_VIRTUAL_TRACE();
62 62
63 private: 63 private:
64 CompositionEvent(); 64 CompositionEvent();
65 CompositionEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractVi ew>, const String&); 65 CompositionEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractVi ew>, const String&);
66 CompositionEvent(const AtomicString& type, const CompositionEventInit&); 66 CompositionEvent(const AtomicString& type, const CompositionEventInit&);
67 67
68 String m_data; 68 String m_data;
69 }; 69 };
70 70
71 } // namespace blink 71 } // namespace blink
72 72
73 #endif // CompositionEvent_h 73 #endif // CompositionEvent_h
OLDNEW
« no previous file with comments | « Source/core/events/ClipboardEvent.h ('k') | Source/core/events/CustomEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698