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
119
) sorted by null
1
2
3
4
5
/external/chromium_org/third_party/WebKit/Source/core/frame/
FrameViewAutoSizeInfo.h
15
class
FrameView
;
22
FrameViewAutoSizeInfo(
FrameView
*);
30
RefPtr<
FrameView
> m_frameView;
FrameView.cpp
28
#include "core/frame/
FrameView
.h"
93
double
FrameView
::s_currentFrameTimeStamp = 0.0;
94
bool
FrameView
::s_inPaintContents = false;
100
FrameView
::
FrameView
(LocalFrame* frame)
107
, m_postLayoutTasksTimer(this, &
FrameView
::postLayoutTimerFired)
108
, m_updateWidgetsTimer(this, &
FrameView
::updateWidgetsTimerFired)
122
, m_didScrollTimer(this, &
FrameView
::didScrollTimerFired)
136
PassRefPtr<
FrameView
>
FrameView
::create(LocalFrame* frame
[
all
...]
FrameView.h
60
// FIXME: Oilpan: move Widget (and thereby
FrameView
) to the heap.
61
class
FrameView
FINAL : public ScrollView {
66
static PassRefPtr<
FrameView
> create(LocalFrame*);
67
static PassRefPtr<
FrameView
> create(LocalFrame*, const IntSize& initialSize);
69
virtual ~
FrameView
();
140
// True if the
FrameView
is not transparent, and the base background color is opaque.
191
void postLayoutTimerFired(Timer<
FrameView
>*);
316
// passed around the
FrameView
layout methods can be true while this returns
320
// Sets the tickmarks for the
FrameView
, overriding the default behavior
357
explicit
FrameView
(LocalFrame*)
[
all
...]
LocalFrame.h
53
class
FrameView
;
73
void setView(PassRefPtr<
FrameView
>);
92
FrameView
* view() const;
171
RefPtr<
FrameView
> m_view;
204
inline
FrameView
* LocalFrame::view() const
/external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentAnimations.h
39
class
FrameView
;
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationDispatcher.h
12
class
FrameView
;
ScreenOrientationController.h
18
class
FrameView
;
46
static WebScreenOrientationType computeOrientation(
FrameView
*);
/external/chromium_org/third_party/WebKit/Source/web/
PopupMenuChromium.h
40
class
FrameView
;
56
RefPtr<
FrameView
> m_frameView;
ValidationMessageClientImpl.h
37
class
FrameView
;
51
FrameView
* currentView();
PopupContainer.h
42
class
FrameView
;
79
void showPopup(
FrameView
*);
86
void showInRect(const FloatQuad& controlPosition, const IntSize& controlSize,
FrameView
*, int index);
148
RefPtr<
FrameView
> m_frameView;
ScrollbarGroup.h
35
class
FrameView
;
40
ScrollbarGroup(
FrameView
*, const IntRect& frameRect);
77
FrameView
* m_frameView;
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.h
44
class
FrameView
;
59
bool coordinatesScrollingForFrameView(
FrameView
*) const;
70
void frameViewHasSlowRepaintObjectsDidChange(
FrameView
*);
73
void frameViewFixedObjectsDidChange(
FrameView
*);
76
void frameViewRootLayerDidChange(
FrameView
*);
134
bool hasVisibleSlowRepaintViewportConstrainedObjects(
FrameView
*) const;
ScrollingCoordinator.cpp
34
#include "core/frame/
FrameView
.h"
150
FrameView
*
frameView
= m_page->deprecatedLocalMainFrame()->view();
151
bool frameIsScrollable =
frameView
&&
frameView
->isScrollable();
160
if (WebLayer* scrollingWebLayer =
frameView
? toWebLayer(
frameView
->layerForScrolling()) : 0) {
167
scrollingWebLayer->setBounds(
frameView
->contentsSize());
672
bool ScrollingCoordinator::coordinatesScrollingForFrameView(
FrameView
*
frameView
) cons
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
DummyPageHolder.h
47
class
FrameView
;
50
// Creates a dummy Page, LocalFrame, and
FrameView
whose clients are all no-op.
53
// To make sure the renderers are created, you need to call |
frameView
().layout()| after you add nodes into
56
// Since DummyPageHolder stores empty clients in it, it must outlive the Page, LocalFrame,
FrameView
and any other objects
71
FrameView
&
frameView
() const;
DummyPageHolder.cpp
35
#include "core/frame/
FrameView
.h"
78
m_frame->setView(
FrameView
::create(m_frame.get(), initialViewSize));
103
FrameView
& DummyPageHolder::
frameView
() const
/external/chromium_org/third_party/WebKit/Source/core/events/
EventDispatcher.h
38
class
FrameView
;
72
RefPtr<
FrameView
> m_view;
/external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.h
35
class
FrameView
;
77
void updatePanScrollState(
FrameView
*, const IntPoint& lastKnownMousePosition);
PageAnimator.cpp
9
#include "core/frame/
FrameView
.h"
53
if (const
FrameView
::ScrollableAreaSet* scrollableAreas = documents[i]->view()->scrollableAreas()) {
54
for (
FrameView
::ScrollableAreaSet::iterator it = scrollableAreas->begin(); it != scrollableAreas->end(); ++it)
79
RefPtr<
FrameView
> view = rootFrame->view();
AutoscrollController.cpp
32
#include "core/frame/
FrameView
.h"
96
if (
FrameView
* view = scrollable->frame()->view()) {
205
if (
FrameView
* view = scrollable->frame()->view())
248
if (
FrameView
* view = m_autoscrollRenderer->frame()->view())
264
void AutoscrollController::updatePanScrollState(
FrameView
* view, const IntPoint& lastKnownMousePosition)
/external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.cpp
32
#include "core/frame/
FrameView
.h"
44
FrameView
* view = m_frame ? m_frame->view() : 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.h
36
class
FrameView
;
66
FrameView
*
frameView
() const;
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.h
49
class
FrameView
;
71
static PassRefPtrWillBeRawPtr<XMLDocumentParser> create(Document& document,
FrameView
* view)
106
explicit XMLDocumentParser(Document&,
FrameView
* = 0);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollView.h
68
virtual
FrameView
* documentFrameView() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/dom/
Touch.cpp
30
#include "core/frame/
FrameView
.h"
40
FrameView
*
frameView
= frame->view();
41
if (!
frameView
)
44
return FloatPoint(
frameView
->scrollPosition()).scaledBy(scale);
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.h
32
class
FrameView
;
Completed in 1026 milliseconds
1
2
3
4
5