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

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: Addressed liberato's comments. Changed to use HTMLDivElement instead of HTMLInputElement. 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 } 279 }
280 void SetV0CustomElementState(V0CustomElementState new_state); 280 void SetV0CustomElementState(V0CustomElementState new_state);
281 281
282 virtual bool IsMediaControlElement() const { return false; } 282 virtual bool IsMediaControlElement() const { return false; }
283 virtual bool IsMediaControls() const { return false; } 283 virtual bool IsMediaControls() const { return false; }
284 virtual bool IsTextTrackContainer() const { return false; } 284 virtual bool IsTextTrackContainer() const { return false; }
285 virtual bool IsVTTElement() const { return false; } 285 virtual bool IsVTTElement() const { return false; }
286 virtual bool IsAttributeNode() const { return false; } 286 virtual bool IsAttributeNode() const { return false; }
287 virtual bool IsCharacterDataNode() const { return false; } 287 virtual bool IsCharacterDataNode() const { return false; }
288 virtual bool IsFrameOwnerElement() const { return false; } 288 virtual bool IsFrameOwnerElement() const { return false; }
289 virtual bool IsMediaRemotingInterstitial() const { return false; }
289 290
290 bool IsStyledElement() const; 291 bool IsStyledElement() const;
291 292
292 bool IsDocumentNode() const; 293 bool IsDocumentNode() const;
293 bool IsTreeScope() const; 294 bool IsTreeScope() const;
294 bool IsDocumentFragment() const { return GetFlag(kIsDocumentFragmentFlag); } 295 bool IsDocumentFragment() const { return GetFlag(kIsDocumentFragmentFlag); }
295 bool IsShadowRoot() const { return IsDocumentFragment() && IsTreeScope(); } 296 bool IsShadowRoot() const { return IsDocumentFragment() && IsTreeScope(); }
296 bool IsInsertionPoint() const { return GetFlag(kIsInsertionPointFlag); } 297 bool IsInsertionPoint() const { return GetFlag(kIsInsertionPointFlag); }
297 298
298 bool CanParticipateInFlatTree() const; 299 bool CanParticipateInFlatTree() const;
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 } // namespace blink 994 } // namespace blink
994 995
995 #ifndef NDEBUG 996 #ifndef NDEBUG
996 // Outside the WebCore namespace for ease of invocation from gdb. 997 // Outside the WebCore namespace for ease of invocation from gdb.
997 void showNode(const blink::Node*); 998 void showNode(const blink::Node*);
998 void showTree(const blink::Node*); 999 void showTree(const blink::Node*);
999 void showNodePath(const blink::Node*); 1000 void showNodePath(const blink::Node*);
1000 #endif 1001 #endif
1001 1002
1002 #endif // Node_h 1003 #endif // Node_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698