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

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

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google 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 15 matching lines...) Expand all
26 #define AutocompleteErrorEvent_h 26 #define AutocompleteErrorEvent_h
27 27
28 #include "core/events/Event.h" 28 #include "core/events/Event.h"
29 29
30 namespace blink { 30 namespace blink {
31 31
32 struct AutocompleteErrorEventInit : public EventInit { 32 struct AutocompleteErrorEventInit : public EventInit {
33 String reason; 33 String reason;
34 }; 34 };
35 35
36 class AutocompleteErrorEvent FINAL : public Event { 36 class AutocompleteErrorEvent final : public Event {
37 DEFINE_WRAPPERTYPEINFO(); 37 DEFINE_WRAPPERTYPEINFO();
38 public: 38 public:
39 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create() 39 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create()
40 { 40 {
41 return adoptRefWillBeNoop(new AutocompleteErrorEvent); 41 return adoptRefWillBeNoop(new AutocompleteErrorEvent);
42 } 42 }
43 43
44 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const String& r eason) 44 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const String& r eason)
45 { 45 {
46 return adoptRefWillBeNoop(new AutocompleteErrorEvent(reason)); 46 return adoptRefWillBeNoop(new AutocompleteErrorEvent(reason));
47 } 47 }
48 48
49 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicStr ing& eventType, const AutocompleteErrorEventInit& initializer) 49 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicStr ing& eventType, const AutocompleteErrorEventInit& initializer)
50 { 50 {
51 return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initiali zer)); 51 return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initiali zer));
52 } 52 }
53 53
54 const String& reason() const { return m_reason; } 54 const String& reason() const { return m_reason; }
55 55
56 virtual const AtomicString& interfaceName() const OVERRIDE { return EventNam es::AutocompleteErrorEvent; } 56 virtual const AtomicString& interfaceName() const override { return EventNam es::AutocompleteErrorEvent; }
57 57
58 virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); } 58 virtual void trace(Visitor* visitor) override { Event::trace(visitor); }
59 59
60 private: 60 private:
61 AutocompleteErrorEvent() { } 61 AutocompleteErrorEvent() { }
62 62
63 AutocompleteErrorEvent(const String& reason) 63 AutocompleteErrorEvent(const String& reason)
64 : Event(EventTypeNames::autocompleteerror, true, false) 64 : Event(EventTypeNames::autocompleteerror, true, false)
65 , m_reason(reason) { } 65 , m_reason(reason) { }
66 66
67 AutocompleteErrorEvent(const AtomicString& eventType, const AutocompleteErro rEventInit& initializer) 67 AutocompleteErrorEvent(const AtomicString& eventType, const AutocompleteErro rEventInit& initializer)
68 : Event(eventType, initializer) 68 : Event(eventType, initializer)
69 , m_reason(initializer.reason) { } 69 , m_reason(initializer.reason) { }
70 70
71 String m_reason; 71 String m_reason;
72 }; 72 };
73 73
74 } // namespace blink 74 } // namespace blink
75 75
76 #endif // AutocompleteErrorEvent_h 76 #endif // AutocompleteErrorEvent_h
OLDNEW
« no previous file with comments | « Source/core/events/ApplicationCacheErrorEvent.h ('k') | Source/core/events/BeforeTextInsertedEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698