OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FrameView
(Results
1 - 25
of
111
) sorted by null
1
2
3
4
5
/external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentAnimations.h
39
class
FrameView
;
/external/chromium_org/third_party/WebKit/Source/platform/
PopupMenu.h
30
class
FrameView
;
/external/chromium_org/third_party/WebKit/Source/core/frame/
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
...]
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
...]
Frame.h
59
class
FrameView
;
116
void setView(PassRefPtr<
FrameView
>);
137
FrameView
* view() const;
225
RefPtr<
FrameView
> m_view;
265
inline
FrameView
* Frame::view() const
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.h
46
class
FrameView
;
61
bool coordinatesScrollingForFrameView(
FrameView
*) const;
73
void frameViewWheelEventHandlerCountChanged(
FrameView
*);
76
void frameViewHasSlowRepaintObjectsDidChange(
FrameView
*);
79
void frameViewFixedObjectsDidChange(
FrameView
*);
82
void frameViewRootLayerDidChange(
FrameView
*);
131
GraphicsLayer* scrollLayerForFrameView(
FrameView
*);
132
GraphicsLayer* counterScrollingLayerForFrameView(
FrameView
*);
141
void recomputeWheelEventHandlerCountForFrameView(
FrameView
*);
144
bool hasVisibleSlowRepaintViewportConstrainedObjects(
FrameView
*) const
[
all
...]
ScrollingCoordinator.cpp
36
#include "core/frame/
FrameView
.h"
155
FrameView
*
frameView
= m_page->mainFrame()->view();
156
bool frameIsScrollable =
frameView
&&
frameView
->isScrollable();
607
void ScrollingCoordinator::recomputeWheelEventHandlerCountForFrameView(
FrameView
*)
626
bool ScrollingCoordinator::coordinatesScrollingForFrameView(
FrameView
*
frameView
) const
632
if (&
frameView
->frame() != m_page->mainFrame())
645
FrameView
* frameView = frame->view()
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.h
46
class
FrameView
;
49
// Creates a dummy Page, Frame, and
FrameView
whose clients are all no-op.
52
// To make sure the renderers are created, you need to call |
frameView
().layout()| after you add nodes into
55
// Since DummyPageHolder stores empty clients in it, it must outlive the Page, Frame,
FrameView
and any other objects
67
FrameView
&
frameView
() const;
DummyPageHolder.cpp
36
#include "core/frame/
FrameView
.h"
58
m_frame->setView(
FrameView
::create(m_frame.get(), initialViewSize));
79
FrameView
& DummyPageHolder::
frameView
() const
/external/chromium_org/third_party/WebKit/Source/web/
PopupMenuChromium.h
40
class
FrameView
;
65
RefPtr<
FrameView
> m_frameView;
ExternalPopupMenu.h
42
class
FrameView
;
81
RefPtr<WebCore::
FrameView
> m_frameView;
ValidationMessageClientImpl.h
35
class
FrameView
;
51
WebCore::
FrameView
* currentView();
PopupContainer.h
42
class
FrameView
;
71
void showPopup(
FrameView
*);
78
void showInRect(const FloatQuad& controlPosition, const IntSize& controlSize,
FrameView
*, int index);
135
RefPtr<
FrameView
> m_frameView;
ScrollbarGroup.h
34
class
FrameView
;
43
ScrollbarGroup(WebCore::
FrameView
*, const WebCore::IntRect& frameRect);
81
WebCore::
FrameView
* m_frameView;
/external/chromium_org/third_party/WebKit/Source/core/events/
EventDispatcher.h
39
class
FrameView
;
75
RefPtr<
FrameView
> m_view;
/external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.h
36
class
FrameView
;
78
void updatePanScrollState(
FrameView
*, const IntPoint& lastKnownMousePosition);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFrame.cpp
28
#include "core/frame/
FrameView
.h"
56
FrameView
* view = toFrameView(widget());
RenderIFrame.cpp
32
#include "core/frame/
FrameView
.h"
94
FrameView
* childFrameView = toFrameView(widget());
102
// however, this causes
FrameView
::layout() to add vertical scrollbars, incorrectly inflating
103
// the resulting contentHeight(). We'll need to make
FrameView
::layout() smarter.
110
FrameView
* childFrameView = toFrameView(widget());
RenderWidget.h
74
FrameView
* m_frameView;
/external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.cpp
34
#include "core/frame/
FrameView
.h"
45
FrameView
* view = m_frame ? m_frame->view() : 0;
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h
48
class
FrameView
;
69
static PassRefPtr<XMLDocumentParser> create(Document* document,
FrameView
* view)
104
XMLDocumentParser(Document*,
FrameView
* = 0);
156
FrameView
* m_view;
/external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.cpp
31
#include "core/frame/
FrameView
.h"
39
FrameView
*
frameView
= frame->view();
40
if (!
frameView
)
42
return
frameView
->scrollX() / frame->pageZoomFactor();
49
FrameView
*
frameView
= frame->view();
50
if (!
frameView
)
52
return
frameView
->scrollY() / frame->pageZoomFactor();
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.h
35
class
FrameView
;
75
FrameView
*
frameView
() const;
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLBodyElement.cpp
38
#include "core/frame/
FrameView
.h"
217
FrameView
* view = document.view();
234
FrameView
* view = frame->view();
250
FrameView
* view = document.view();
267
FrameView
* view = frame->view();
278
FrameView
* view = document.view();
287
FrameView
* view = document.view();
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollView.h
68
virtual
FrameView
* documentFrameView() const OVERRIDE;
Completed in 160 milliseconds
1
2
3
4
5