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

Side by Side Diff: Source/core/html/HTMLMediaElement.h

Issue 22791003: Make media controls keyboard accessible Base URL: http://src.chromium.org/blink/trunk/
Patch Set: Created 7 years, 4 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) 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 bool ignoreTrackDisplayUpdateRequests() const { return m_ignoreTrackDisplayU pdate > 0; } 326 bool ignoreTrackDisplayUpdateRequests() const { return m_ignoreTrackDisplayU pdate > 0; }
327 void beginIgnoringTrackDisplayUpdateRequests(); 327 void beginIgnoringTrackDisplayUpdateRequests();
328 void endIgnoringTrackDisplayUpdateRequests(); 328 void endIgnoringTrackDisplayUpdateRequests();
329 329
330 private: 330 private:
331 void createMediaPlayer(); 331 void createMediaPlayer();
332 332
333 virtual bool alwaysCreateUserAgentShadowRoot() const OVERRIDE { return true; } 333 virtual bool alwaysCreateUserAgentShadowRoot() const OVERRIDE { return true; }
334 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; } 334 virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
335 335
336 virtual bool hasCustomFocusLogic() const OVERRIDE;
337 virtual bool supportsFocus() const; 336 virtual bool supportsFocus() const;
338 virtual bool isMouseFocusable() const; 337 virtual bool isMouseFocusable() const;
339 virtual bool rendererIsNeeded(const NodeRenderingContext&); 338 virtual bool rendererIsNeeded(const NodeRenderingContext&);
340 virtual RenderObject* createRenderer(RenderStyle*); 339 virtual RenderObject* createRenderer(RenderStyle*);
341 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const OV ERRIDE; 340 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const OV ERRIDE;
342 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 341 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
343 virtual void removedFrom(ContainerNode*) OVERRIDE; 342 virtual void removedFrom(ContainerNode*) OVERRIDE;
344 virtual void didRecalcStyle(StyleChange); 343 virtual void didRecalcStyle(StyleChange);
345 344
346 virtual void didBecomeFullscreenElement(); 345 virtual void didBecomeFullscreenElement();
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 606
608 inline HTMLMediaElement* toMediaElement(Node* node) 607 inline HTMLMediaElement* toMediaElement(Node* node)
609 { 608 {
610 ASSERT_WITH_SECURITY_IMPLICATION(!node || isMediaElement(node)); 609 ASSERT_WITH_SECURITY_IMPLICATION(!node || isMediaElement(node));
611 return static_cast<HTMLMediaElement*>(node); 610 return static_cast<HTMLMediaElement*>(node);
612 } 611 }
613 612
614 } //namespace 613 } //namespace
615 614
616 #endif 615 #endif
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/media-focus-in-standalone-media-document-expected.txt ('k') | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698