OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:visibleContentScaleFactor
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.h
114
// visibleContentRect().size() is computed from unscaledVisibleContentSize() divided by the value of
visibleContentScaleFactor
.
115
// For the main frame,
visibleContentScaleFactor
is equal to the page's pageScaleFactor; it's 1 otherwise.
117
virtual float
visibleContentScaleFactor
() const { return 1; }
122
// Scale used to convert incoming input events. Usually the same as
visibleContentScaleFactor
(), unless specifically changed.
123
virtual float inputEventsScaleFactor() const { return
visibleContentScaleFactor
(); }
ScrollView.cpp
190
visibleContentSize.scale(1 /
visibleContentScaleFactor
());
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp
375
ASSERT(frame->view()->
visibleContentScaleFactor
() == 1);
FrameView.h
154
virtual float
visibleContentScaleFactor
() const OVERRIDE { return m_visibleContentScaleFactor; }
FrameView.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebRemoteFrameImpl.cpp
879
localFrameImpl->frame()->view()->
visibleContentScaleFactor
());
WebLocalFrameImpl.cpp
549
client()->initializeChildFrame(frame()->view()->frameRect(), frame()->view()->
visibleContentScaleFactor
());
[
all
...]
Completed in 315 milliseconds