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

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: Rebased. 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 } 280 }
281 void SetV0CustomElementState(V0CustomElementState new_state); 281 void SetV0CustomElementState(V0CustomElementState new_state);
282 282
283 virtual bool IsMediaControlElement() const { return false; } 283 virtual bool IsMediaControlElement() const { return false; }
284 virtual bool IsMediaControls() const { return false; } 284 virtual bool IsMediaControls() const { return false; }
285 virtual bool IsTextTrackContainer() const { return false; } 285 virtual bool IsTextTrackContainer() const { return false; }
286 virtual bool IsVTTElement() const { return false; } 286 virtual bool IsVTTElement() const { return false; }
287 virtual bool IsAttributeNode() const { return false; } 287 virtual bool IsAttributeNode() const { return false; }
288 virtual bool IsCharacterDataNode() const { return false; } 288 virtual bool IsCharacterDataNode() const { return false; }
289 virtual bool IsFrameOwnerElement() const { return false; } 289 virtual bool IsFrameOwnerElement() const { return false; }
290 virtual bool IsMediaRemotingInterstitial() const { return false; }
290 291
291 bool IsStyledElement() const; 292 bool IsStyledElement() const;
292 293
293 bool IsDocumentNode() const; 294 bool IsDocumentNode() const;
294 bool IsTreeScope() const; 295 bool IsTreeScope() const;
295 bool IsDocumentFragment() const { return GetFlag(kIsDocumentFragmentFlag); } 296 bool IsDocumentFragment() const { return GetFlag(kIsDocumentFragmentFlag); }
296 bool IsShadowRoot() const { return IsDocumentFragment() && IsTreeScope(); } 297 bool IsShadowRoot() const { return IsDocumentFragment() && IsTreeScope(); }
297 bool IsInsertionPoint() const { return GetFlag(kIsInsertionPointFlag); } 298 bool IsInsertionPoint() const { return GetFlag(kIsInsertionPointFlag); }
298 299
299 bool CanParticipateInFlatTree() const; 300 bool CanParticipateInFlatTree() const;
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 } // namespace blink 1000 } // namespace blink
1000 1001
1001 #ifndef NDEBUG 1002 #ifndef NDEBUG
1002 // Outside the WebCore namespace for ease of invocation from gdb. 1003 // Outside the WebCore namespace for ease of invocation from gdb.
1003 void showNode(const blink::Node*); 1004 void showNode(const blink::Node*);
1004 void showTree(const blink::Node*); 1005 void showTree(const blink::Node*);
1005 void showNodePath(const blink::Node*); 1006 void showNodePath(const blink::Node*);
1006 #endif 1007 #endif
1007 1008
1008 #endif // Node_h 1009 #endif // Node_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/mediaControls.css ('k') | third_party/WebKit/Source/core/html/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698