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

Side by Side Diff: Source/core/dom/Element.h

Issue 126713004: Remove Node.prefix so it's no longer visible to script. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove spurious OVERRIDE. Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Attr.h ('k') | Source/core/dom/Element.cpp » ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 IntSize savedLayerScrollOffset() const; 519 IntSize savedLayerScrollOffset() const;
520 void setSavedLayerScrollOffset(const IntSize&); 520 void setSavedLayerScrollOffset(const IntSize&);
521 521
522 ActiveAnimations* activeAnimations() const; 522 ActiveAnimations* activeAnimations() const;
523 ActiveAnimations* ensureActiveAnimations(); 523 ActiveAnimations* ensureActiveAnimations();
524 bool hasActiveAnimations() const; 524 bool hasActiveAnimations() const;
525 525
526 InputMethodContext* inputMethodContext(); 526 InputMethodContext* inputMethodContext();
527 bool hasInputMethodContext() const; 527 bool hasInputMethodContext() const;
528 528
529 virtual void setPrefix(const AtomicString&, ExceptionState&) OVERRIDE FINAL; 529 void setPrefix(const AtomicString&, ExceptionState&);
530 530
531 void synchronizeAttribute(const AtomicString& localName) const; 531 void synchronizeAttribute(const AtomicString& localName) const;
532 532
533 MutableStylePropertySet* ensureMutableInlineStyle(); 533 MutableStylePropertySet* ensureMutableInlineStyle();
534 void clearMutableInlineStyleIfEmpty(); 534 void clearMutableInlineStyleIfEmpty();
535 535
536 bool needsPseudoElement(PseudoId, const RenderStyle&) const; 536 bool needsPseudoElement(PseudoId, const RenderStyle&) const;
537 537
538 protected: 538 protected:
539 Element(const QualifiedName& tagName, Document* document, ConstructionType t ype) 539 Element(const QualifiedName& tagName, Document* document, ConstructionType t ype)
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 } 895 }
896 896
897 inline bool isShadowHost(const Element* element) 897 inline bool isShadowHost(const Element* element)
898 { 898 {
899 return element && element->shadow(); 899 return element && element->shadow();
900 } 900 }
901 901
902 } // namespace 902 } // namespace
903 903
904 #endif 904 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Attr.h ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698