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

Side by Side Diff: Source/core/dom/StringCallback.cpp

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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
« no previous file with comments | « Source/core/dom/StaticNodeList.h ('k') | Source/core/dom/StyleEngine.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 #include "core/dom/StringCallback.h" 32 #include "core/dom/StringCallback.h"
33 33
34 #include "core/dom/ExecutionContext.h" 34 #include "core/dom/ExecutionContext.h"
35 #include "core/dom/ExecutionContextTask.h" 35 #include "core/dom/ExecutionContextTask.h"
36 #include "wtf/text/WTFString.h" 36 #include "wtf/text/WTFString.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 namespace { 40 namespace {
41 41
42 class DispatchCallbackTask FINAL : public ExecutionContextTask { 42 class DispatchCallbackTask final : public ExecutionContextTask {
43 public: 43 public:
44 static PassOwnPtr<DispatchCallbackTask> create(StringCallback* callback, con st String& data, const String& taskName) 44 static PassOwnPtr<DispatchCallbackTask> create(StringCallback* callback, con st String& data, const String& taskName)
45 { 45 {
46 return adoptPtr(new DispatchCallbackTask(callback, data, taskName)); 46 return adoptPtr(new DispatchCallbackTask(callback, data, taskName));
47 } 47 }
48 48
49 virtual void performTask(ExecutionContext*) OVERRIDE 49 virtual void performTask(ExecutionContext*) override
50 { 50 {
51 m_callback->handleEvent(m_data); 51 m_callback->handleEvent(m_data);
52 } 52 }
53 53
54 virtual String taskNameForInstrumentation() const OVERRIDE 54 virtual String taskNameForInstrumentation() const override
55 { 55 {
56 return m_taskName; 56 return m_taskName;
57 } 57 }
58 58
59 private: 59 private:
60 DispatchCallbackTask(StringCallback* callback, const String& data, const Str ing& taskName) 60 DispatchCallbackTask(StringCallback* callback, const String& data, const Str ing& taskName)
61 : m_callback(callback) 61 : m_callback(callback)
62 , m_data(data) 62 , m_data(data)
63 , m_taskName(taskName) 63 , m_taskName(taskName)
64 { 64 {
65 } 65 }
66 66
67 Persistent<StringCallback> m_callback; 67 Persistent<StringCallback> m_callback;
68 const String m_data; 68 const String m_data;
69 const String m_taskName; 69 const String m_taskName;
70 }; 70 };
71 71
72 } // namespace 72 } // namespace
73 73
74 void StringCallback::scheduleCallback(StringCallback* callback, ExecutionContext * context, const String& data, const String& instrumentationName) 74 void StringCallback::scheduleCallback(StringCallback* callback, ExecutionContext * context, const String& data, const String& instrumentationName)
75 { 75 {
76 context->postTask(DispatchCallbackTask::create(callback, data, instrumentati onName)); 76 context->postTask(DispatchCallbackTask::create(callback, data, instrumentati onName));
77 } 77 }
78 78
79 } // namespace blink 79 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/StaticNodeList.h ('k') | Source/core/dom/StyleEngine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698