Index: Source/core/html/HTMLStyleElement.h |
diff --git a/Source/core/html/HTMLStyleElement.h b/Source/core/html/HTMLStyleElement.h |
index dc116eb7e2c7d72dfe843c1a56c2f16aa5241bf7..01a10e43cd7eac3fa96dedd57fe2b4bcbdfed7b6 100644 |
--- a/Source/core/html/HTMLStyleElement.h |
+++ b/Source/core/html/HTMLStyleElement.h |
@@ -74,17 +74,16 @@ private: |
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE; |
virtual void removedFrom(ContainerNode*) OVERRIDE; |
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0); |
+ virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE; |
- virtual void finishParsingChildren(); |
+ virtual void finishParsingChildren() OVERRIDE; |
- virtual bool isLoading() const { return StyleElement::isLoading(); } |
- virtual bool sheetLoaded() { return StyleElement::sheetLoaded(document()); } |
- virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred); |
- virtual void startLoadingDynamicSheet() { StyleElement::startLoadingDynamicSheet(document()); } |
+ virtual bool sheetLoaded() OVERRIDE { return StyleElement::sheetLoaded(document()); } |
+ virtual void notifyLoadedSheetAndAllCriticalSubresources(bool errorOccurred) OVERRIDE; |
+ virtual void startLoadingDynamicSheet() OVERRIDE { StyleElement::startLoadingDynamicSheet(document()); } |
- virtual const AtomicString& media() const; |
- virtual const AtomicString& type() const; |
+ virtual const AtomicString& media() const OVERRIDE; |
+ virtual const AtomicString& type() const OVERRIDE; |
void scopedAttributeChanged(bool); |
void registerWithScopingNode(bool); |