OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FrameView
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.h
58
class
FrameView
: public ScrollView {
63
static PassRefPtr<
FrameView
> create(Frame*);
64
static PassRefPtr<
FrameView
> create(Frame*, const IntSize& initialSize);
66
virtual ~
FrameView
();
93
void layoutTimerFired(Timer<
FrameView
>*);
141
// True if the
FrameView
is not transparent, and the base background color is opaque.
206
void postLayoutTimerFired(Timer<
FrameView
>*);
316
// Page and
FrameView
both store a Pagination value. Page::pagination() is set only by API,
317
// and
FrameView
::pagination() is set only by CSS. Page::pagination() will affect all
318
// FrameViews in the page cache, but
FrameView
::pagination() only affects the curren
[
all
...]
FrameView.cpp
28
#include "core/frame/
FrameView
.h"
88
double
FrameView
::s_currentFrameTimeStamp = 0.0;
89
bool
FrameView
::s_inPaintContents = false;
96
double
FrameView
::s_normalDeferredRepaintDelay = 0.016;
98
double
FrameView
::s_initialDeferredRepaintDelayDuringLoading = 0;
100
double
FrameView
::s_maxDeferredRepaintDelayDuringLoading = 2.5;
102
double
FrameView
::s_deferredRepaintDelayIncrementDuringLoading = 0.5;
107
double
FrameView
::s_normalDeferredRepaintDelay = 0;
108
double
FrameView
::s_initialDeferredRepaintDelayDuringLoading = 0;
109
double
FrameView
::s_maxDeferredRepaintDelayDuringLoading = 0
[
all
...]
Completed in 585 milliseconds