| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 private: | 329 private: |
| 330 void createMediaPlayer(); | 330 void createMediaPlayer(); |
| 331 | 331 |
| 332 virtual bool alwaysCreateUserAgentShadowRoot() const OVERRIDE { return true;
} | 332 virtual bool alwaysCreateUserAgentShadowRoot() const OVERRIDE { return true;
} |
| 333 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } | 333 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } |
| 334 | 334 |
| 335 virtual bool hasCustomFocusLogic() const OVERRIDE; | 335 virtual bool hasCustomFocusLogic() const OVERRIDE; |
| 336 virtual bool supportsFocus() const; | 336 virtual bool supportsFocus() const; |
| 337 virtual bool isMouseFocusable() const; | 337 virtual bool isMouseFocusable() const; |
| 338 virtual bool rendererIsNeeded(const NodeRenderingContext&); | 338 virtual bool rendererIsNeeded(const NodeRenderingContext&); |
| 339 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); | 339 virtual RenderObject* createRenderer(RenderStyle*); |
| 340 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const OV
ERRIDE; | 340 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const OV
ERRIDE; |
| 341 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 341 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 342 virtual void removedFrom(ContainerNode*) OVERRIDE; | 342 virtual void removedFrom(ContainerNode*) OVERRIDE; |
| 343 virtual void didRecalcStyle(StyleChange); | 343 virtual void didRecalcStyle(StyleChange); |
| 344 | 344 |
| 345 virtual void didBecomeFullscreenElement(); | 345 virtual void didBecomeFullscreenElement(); |
| 346 virtual void willStopBeingFullscreenElement(); | 346 virtual void willStopBeingFullscreenElement(); |
| 347 | 347 |
| 348 // ActiveDOMObject functions. | 348 // ActiveDOMObject functions. |
| 349 virtual bool canSuspend() const; | 349 virtual bool canSuspend() const; |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 | 603 |
| 604 inline HTMLMediaElement* toMediaElement(Node* node) | 604 inline HTMLMediaElement* toMediaElement(Node* node) |
| 605 { | 605 { |
| 606 ASSERT_WITH_SECURITY_IMPLICATION(!node || isMediaElement(node)); | 606 ASSERT_WITH_SECURITY_IMPLICATION(!node || isMediaElement(node)); |
| 607 return static_cast<HTMLMediaElement*>(node); | 607 return static_cast<HTMLMediaElement*>(node); |
| 608 } | 608 } |
| 609 | 609 |
| 610 } //namespace | 610 } //namespace |
| 611 | 611 |
| 612 #endif | 612 #endif |
| OLD | NEW |