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

Side by Side Diff: Source/core/xml/XSLImportRule.h

Issue 637483002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/xml (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/xml/XPathVariableReference.h ('k') | Source/core/xml/XSLStyleSheet.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 * This file is part of the XSL implementation. 2 * This file is part of the XSL implementation.
3 * 3 *
4 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 14 matching lines...) Expand all
25 25
26 #include "core/fetch/ResourcePtr.h" 26 #include "core/fetch/ResourcePtr.h"
27 #include "core/xml/XSLStyleSheet.h" 27 #include "core/xml/XSLStyleSheet.h"
28 #include "platform/RuntimeEnabledFeatures.h" 28 #include "platform/RuntimeEnabledFeatures.h"
29 #include "wtf/PassOwnPtr.h" 29 #include "wtf/PassOwnPtr.h"
30 30
31 namespace blink { 31 namespace blink {
32 32
33 class XSLStyleSheetResource; 33 class XSLStyleSheetResource;
34 34
35 class XSLImportRule FINAL : public NoBaseWillBeGarbageCollectedFinalized<XSLImpo rtRule> { 35 class XSLImportRule final : public NoBaseWillBeGarbageCollectedFinalized<XSLImpo rtRule> {
36 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 36 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
37 public: 37 public:
38 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentShe et, const String& href) 38 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentShe et, const String& href)
39 { 39 {
40 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); 40 ASSERT(RuntimeEnabledFeatures::xsltEnabled());
41 return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href)); 41 return adoptPtrWillBeNoop(new XSLImportRule(parentSheet, href));
42 } 42 }
43 43
44 virtual ~XSLImportRule(); 44 virtual ~XSLImportRule();
45 virtual void trace(Visitor*); 45 virtual void trace(Visitor*);
(...skipping 14 matching lines...) Expand all
60 60
61 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; 61 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet;
62 String m_strHref; 62 String m_strHref;
63 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet; 63 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet;
64 bool m_loading; 64 bool m_loading;
65 }; 65 };
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif // XSLImportRule_h 69 #endif // XSLImportRule_h
OLDNEW
« no previous file with comments | « Source/core/xml/XPathVariableReference.h ('k') | Source/core/xml/XSLStyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698