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

Side by Side Diff: Source/WebCore/dom/Node.h

Issue 7057049: Merge 87743 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/742/
Patch Set: Created 9 years, 6 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
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 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 SVGUseElement* svgShadowHost() const; 199 SVGUseElement* svgShadowHost() const;
200 #endif 200 #endif
201 201
202 #if ENABLE(WML) 202 #if ENABLE(WML)
203 virtual bool isWMLElement() const { return false; } 203 virtual bool isWMLElement() const { return false; }
204 #else 204 #else
205 static bool isWMLElement() { return false; } 205 static bool isWMLElement() { return false; }
206 #endif 206 #endif
207 207
208 virtual bool isMediaControlElement() const { return false; } 208 virtual bool isMediaControlElement() const { return false; }
209 virtual bool isMediaControls() const { return false; }
209 bool isStyledElement() const { return getFlag(IsStyledElementFlag); } 210 bool isStyledElement() const { return getFlag(IsStyledElementFlag); }
210 virtual bool isFrameOwnerElement() const { return false; } 211 virtual bool isFrameOwnerElement() const { return false; }
211 virtual bool isAttributeNode() const { return false; } 212 virtual bool isAttributeNode() const { return false; }
212 bool isCommentNode() const { return getFlag(IsCommentFlag); } 213 bool isCommentNode() const { return getFlag(IsCommentFlag); }
213 virtual bool isCharacterDataNode() const { return false; } 214 virtual bool isCharacterDataNode() const { return false; }
214 bool isDocumentNode() const; 215 bool isDocumentNode() const;
215 bool isShadowRoot() const { return getFlag(IsShadowRootFlag); } 216 bool isShadowRoot() const { return getFlag(IsShadowRootFlag); }
216 // FIXME: Remove this when all shadow roots are ShadowRoots. 217 // FIXME: Remove this when all shadow roots are ShadowRoots.
217 virtual bool isShadowBoundary() const { return false; } 218 virtual bool isShadowBoundary() const { return false; }
218 virtual bool canHaveLightChildRendererWithShadow() const { return false; } 219 virtual bool canHaveLightChildRendererWithShadow() const { return false; }
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 } 743 }
743 744
744 } //namespace 745 } //namespace
745 746
746 #ifndef NDEBUG 747 #ifndef NDEBUG
747 // Outside the WebCore namespace for ease of invocation from gdb. 748 // Outside the WebCore namespace for ease of invocation from gdb.
748 void showTree(const WebCore::Node*); 749 void showTree(const WebCore::Node*);
749 #endif 750 #endif
750 751
751 #endif 752 #endif
OLDNEW
« no previous file with comments | « LayoutTests/media/media-controls-clone-crash-expected.txt ('k') | Source/WebCore/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698