OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VTTRegionList
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegionList.h
36
class
VTTRegionList
: public RefCounted<
VTTRegionList
> {
38
static PassRefPtr<
VTTRegionList
> create()
40
return adoptRef(new
VTTRegionList
());
43
~
VTTRegionList
() { }
54
VTTRegionList
();
VTTRegionList.cpp
27
#include "core/html/track/vtt/
VTTRegionList
.h"
31
VTTRegionList
::
VTTRegionList
()
35
unsigned long
VTTRegionList
::length() const
40
VTTRegion*
VTTRegionList
::item(unsigned index) const
48
VTTRegion*
VTTRegionList
::getRegionById(const String& id) const
61
void
VTTRegionList
::add(PassRefPtr<VTTRegion> region)
66
bool
VTTRegionList
::remove(VTTRegion* region)
76
void
VTTRegionList
::clear()
Completed in 26 milliseconds