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

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

Issue 949203002: Separate the text track container from the media controls (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: same size as media controls Created 5 years, 10 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
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-2011, 2014 Apple Inc. All rights reserved. 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 CustomElementState customElementState() const 250 CustomElementState customElementState() const
251 { 251 {
252 return isCustomElement() 252 return isCustomElement()
253 ? (getFlag(CustomElementUpgradedFlag) ? Upgraded : WaitingForUpgrade ) 253 ? (getFlag(CustomElementUpgradedFlag) ? Upgraded : WaitingForUpgrade )
254 : NotCustomElement; 254 : NotCustomElement;
255 } 255 }
256 void setCustomElementState(CustomElementState newState); 256 void setCustomElementState(CustomElementState newState);
257 257
258 virtual bool isMediaControlElement() const { return false; } 258 virtual bool isMediaControlElement() const { return false; }
259 virtual bool isMediaControls() const { return false; } 259 virtual bool isMediaControls() const { return false; }
260 virtual bool isTextTrackContainer() const { return false; }
260 virtual bool isVTTElement() const { return false; } 261 virtual bool isVTTElement() const { return false; }
261 virtual bool isAttributeNode() const { return false; } 262 virtual bool isAttributeNode() const { return false; }
262 virtual bool isCharacterDataNode() const { return false; } 263 virtual bool isCharacterDataNode() const { return false; }
263 virtual bool isFrameOwnerElement() const { return false; } 264 virtual bool isFrameOwnerElement() const { return false; }
264 265
265 // StyledElements allow inline style (style="border: 1px"), presentational a ttributes (ex. color), 266 // StyledElements allow inline style (style="border: 1px"), presentational a ttributes (ex. color),
266 // class names (ex. class="foo bar") and other non-basic styling features. T hey and also control 267 // class names (ex. class="foo bar") and other non-basic styling features. T hey and also control
267 // if this element can participate in style sharing. 268 // if this element can participate in style sharing.
268 // 269 //
269 // FIXME: The only things that ever go through StyleResolver that aren't Sty ledElements are 270 // FIXME: The only things that ever go through StyleResolver that aren't Sty ledElements are
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 } // namespace blink 901 } // namespace blink
901 902
902 #ifndef NDEBUG 903 #ifndef NDEBUG
903 // Outside the WebCore namespace for ease of invocation from gdb. 904 // Outside the WebCore namespace for ease of invocation from gdb.
904 void showNode(const blink::Node*); 905 void showNode(const blink::Node*);
905 void showTree(const blink::Node*); 906 void showTree(const blink::Node*);
906 void showNodePath(const blink::Node*); 907 void showNodePath(const blink::Node*);
907 #endif 908 #endif
908 909
909 #endif // Node_h 910 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698