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

Side by Side Diff: sky/engine/core/html/HTMLMediaElement.cpp

Issue 683703003: Remove various Heap* types. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/html/HTMLMediaElement.h ('k') | sky/engine/core/html/HTMLVideoElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2406 matching lines...) Expand 10 before | Expand all | Expand 10 after
2417 bool HTMLMediaElement::isInteractiveContent() const 2417 bool HTMLMediaElement::isInteractiveContent() const
2418 { 2418 {
2419 return hasAttribute(HTMLNames::controlsAttr); 2419 return hasAttribute(HTMLNames::controlsAttr);
2420 } 2420 }
2421 2421
2422 void HTMLMediaElement::defaultEventHandler(Event* event) 2422 void HTMLMediaElement::defaultEventHandler(Event* event)
2423 { 2423 {
2424 HTMLElement::defaultEventHandler(event); 2424 HTMLElement::defaultEventHandler(event);
2425 } 2425 }
2426 2426
2427 void HTMLMediaElement::trace(Visitor* visitor)
2428 {
2429 visitor->trace(m_playedTimeRanges);
2430 visitor->trace(m_asyncEventQueue);
2431 visitor->trace(m_error);
2432 visitor->trace(m_currentSourceNode);
2433 visitor->trace(m_nextChildNodeToConsider);
2434 visitor->trace(m_mediaSource);
2435 Supplementable<HTMLMediaElement>::trace(visitor);
2436 HTMLElement::trace(visitor);
2437 } 2427 }
2438
2439 }
OLDNEW
« no previous file with comments | « sky/engine/core/html/HTMLMediaElement.h ('k') | sky/engine/core/html/HTMLVideoElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698