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

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

Issue 2767823002: Media Remoting: Add interstitial elements to media element shadow dom. (Closed)
Patch Set: Remove cast text message element. Not assuming remoting interstitial is media control. Created 3 years, 8 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-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. 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
7 * (http://www.torchmobile.com/) 7 * (http://www.torchmobile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 } 278 }
279 void setV0CustomElementState(V0CustomElementState newState); 279 void setV0CustomElementState(V0CustomElementState newState);
280 280
281 virtual bool isMediaControlElement() const { return false; } 281 virtual bool isMediaControlElement() const { return false; }
282 virtual bool isMediaControls() const { return false; } 282 virtual bool isMediaControls() const { return false; }
283 virtual bool isTextTrackContainer() const { return false; } 283 virtual bool isTextTrackContainer() const { return false; }
284 virtual bool isVTTElement() const { return false; } 284 virtual bool isVTTElement() const { return false; }
285 virtual bool isAttributeNode() const { return false; } 285 virtual bool isAttributeNode() const { return false; }
286 virtual bool isCharacterDataNode() const { return false; } 286 virtual bool isCharacterDataNode() const { return false; }
287 virtual bool isFrameOwnerElement() const { return false; } 287 virtual bool isFrameOwnerElement() const { return false; }
288 virtual bool isMediaRemotingInterstitial() const { return false; }
288 289
289 bool isStyledElement() const; 290 bool isStyledElement() const;
290 291
291 bool isDocumentNode() const; 292 bool isDocumentNode() const;
292 bool isTreeScope() const; 293 bool isTreeScope() const;
293 bool isDocumentFragment() const { return getFlag(IsDocumentFragmentFlag); } 294 bool isDocumentFragment() const { return getFlag(IsDocumentFragmentFlag); }
294 bool isShadowRoot() const { return isDocumentFragment() && isTreeScope(); } 295 bool isShadowRoot() const { return isDocumentFragment() && isTreeScope(); }
295 bool isInsertionPoint() const { return getFlag(IsInsertionPointFlag); } 296 bool isInsertionPoint() const { return getFlag(IsInsertionPointFlag); }
296 297
297 bool canParticipateInFlatTree() const; 298 bool canParticipateInFlatTree() const;
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 } // namespace blink 993 } // namespace blink
993 994
994 #ifndef NDEBUG 995 #ifndef NDEBUG
995 // Outside the WebCore namespace for ease of invocation from gdb. 996 // Outside the WebCore namespace for ease of invocation from gdb.
996 void showNode(const blink::Node*); 997 void showNode(const blink::Node*);
997 void showTree(const blink::Node*); 998 void showTree(const blink::Node*);
998 void showNodePath(const blink::Node*); 999 void showNodePath(const blink::Node*);
999 #endif 1000 #endif
1000 1001
1001 #endif // Node_h 1002 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698