OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_fullScreenElementStack
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
Fullscreen.h
74
Element* fullscreenElement() const { return !
m_fullScreenElementStack
.isEmpty() ?
m_fullScreenElementStack
.last().first.get() : 0; }
113
WillBeHeapVector<std::pair<RefPtrWillBeMember<Element>, RequestType> >
m_fullScreenElementStack
;
Fullscreen.cpp
196
m_fullScreenElementStack
.clear();
207
m_fullScreenElementStack
.clear();
311
size_t stackSize = from(doc).
m_fullScreenElementStack
.size();
312
from(doc).
m_fullScreenElementStack
.remove(0, stackSize - 1);
313
ASSERT(from(doc).
m_fullScreenElementStack
.size() == 1);
329
if (
m_fullScreenElementStack
.isEmpty())
348
RequestType requestType = from(**i).
m_fullScreenElementStack
.last().second;
356
RequestType requestType = from(*currentDoc).
m_fullScreenElementStack
.last().second;
575
for (size_t i = 0; i <
m_fullScreenElementStack
.size(); ++i) {
576
if (
m_fullScreenElementStack
[i].first.get() == &oldNode)
[
all
...]
Completed in 32 milliseconds