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

Unified Diff: Source/core/dom/ScriptLoader.h

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/RenderedDocumentMarker.h ('k') | Source/core/dom/ScriptRunner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ScriptLoader.h
diff --git a/Source/core/dom/ScriptLoader.h b/Source/core/dom/ScriptLoader.h
index 3f1c391c3d7f6e14197f2bfa80a3fec11d674bac..0fa6d52ce9a7970a2937952072177b6fe40f4c69 100644
--- a/Source/core/dom/ScriptLoader.h
+++ b/Source/core/dom/ScriptLoader.h
@@ -35,7 +35,7 @@ class ScriptLoaderClient;
class ScriptSourceCode;
-class ScriptLoader FINAL : private ScriptResourceClient {
+class ScriptLoader final : private ScriptResourceClient {
public:
static PassOwnPtr<ScriptLoader> create(Element*, bool createdByParser, bool isEvaluated);
virtual ~ScriptLoader();
@@ -84,7 +84,7 @@ private:
ScriptLoaderClient* client() const;
// ResourceClient
- virtual void notifyFinished(Resource*) OVERRIDE;
+ virtual void notifyFinished(Resource*) override;
// FIXME: Oilpan: This should become a Member once ResourceClient is moved to the heap.
Element* m_element;
« no previous file with comments | « Source/core/dom/RenderedDocumentMarker.h ('k') | Source/core/dom/ScriptRunner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698