OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LayerTreeContext
(Results
1 - 25
of
31
) sorted by null
1
2
/external/webkit/Source/WebKit2/Shared/win/
LayerTreeContextWin.cpp
27
#include "
LayerTreeContext
.h"
33
LayerTreeContext
::
LayerTreeContext
()
38
LayerTreeContext
::~
LayerTreeContext
()
43
void
LayerTreeContext
::encode(CoreIPC::ArgumentEncoder*) const
48
bool
LayerTreeContext
::decode(CoreIPC::ArgumentDecoder*,
LayerTreeContext
&)
54
bool
LayerTreeContext
::isEmpty() const
60
bool operator==(const
LayerTreeContext
&, const LayerTreeContext&
[
all
...]
/external/webkit/Source/WebKit2/Shared/
LayerTreeContext.h
38
class
LayerTreeContext
{
40
LayerTreeContext
();
41
~
LayerTreeContext
();
44
static bool decode(CoreIPC::ArgumentDecoder*,
LayerTreeContext
&);
53
bool operator==(const
LayerTreeContext
&, const
LayerTreeContext
&);
55
inline bool operator!=(const
LayerTreeContext
& a, const
LayerTreeContext
& b)
/external/webkit/Source/WebKit2/Shared/mac/
LayerTreeContextMac.mm
27
#include "
LayerTreeContext
.h"
34
LayerTreeContext
::
LayerTreeContext
()
39
LayerTreeContext
::~
LayerTreeContext
()
43
void
LayerTreeContext
::encode(CoreIPC::ArgumentEncoder* encoder) const
48
bool
LayerTreeContext
::decode(CoreIPC::ArgumentDecoder* decoder,
LayerTreeContext
& result)
56
bool
LayerTreeContext
::isEmpty() const
61
bool operator==(const
LayerTreeContext
& a, const LayerTreeContext& b
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxyImpl.h
31
#include "
LayerTreeContext
.h"
61
virtual void didUpdateBackingStoreState(uint64_t backingStoreStateID, const UpdateInfo&, const
LayerTreeContext
&);
62
virtual void enterAcceleratedCompositingMode(uint64_t backingStoreStateID, const
LayerTreeContext
&);
73
void enterAcceleratedCompositingMode(const
LayerTreeContext
&);
95
LayerTreeContext
m_layerTreeContext;
DrawingAreaProxy.h
53
class
LayerTreeContext
;
108
virtual void didUpdateBackingStoreState(uint64_t backingStoreStateID, const UpdateInfo&, const
LayerTreeContext
&) { }
110
virtual void enterAcceleratedCompositingMode(uint64_t backingStoreStateID, const
LayerTreeContext
&) { }
WebFullScreenManagerProxy.h
64
class
LayerTreeContext
;
95
void enterAcceleratedCompositingMode(const
LayerTreeContext
&);
DrawingAreaProxyImpl.cpp
31
#include "
LayerTreeContext
.h"
176
void DrawingAreaProxyImpl::didUpdateBackingStoreState(uint64_t backingStoreStateID, const UpdateInfo& updateInfo, const
LayerTreeContext
&
layerTreeContext
)
188
if (
layerTreeContext
!= m_layerTreeContext) {
194
if (!
layerTreeContext
.isEmpty()) {
195
enterAcceleratedCompositingMode(
layerTreeContext
);
196
ASSERT(
layerTreeContext
== m_layerTreeContext);
212
void DrawingAreaProxyImpl::enterAcceleratedCompositingMode(uint64_t backingStoreStateID, const
LayerTreeContext
&
layerTreeContext
)
219
enterAcceleratedCompositingMode(
layerTreeContext
);
[
all
...]
PageClient.h
126
virtual void enterAcceleratedCompositingMode(const
LayerTreeContext
&) = 0;
/external/webkit/Source/WebKit2/UIProcess/mac/
WKFullScreenWindowController.h
32
class
LayerTreeContext
;
68
- (void)enterAcceleratedCompositingMode:(const WebKit::
LayerTreeContext
&)context;
WebFullScreenManagerProxyMac.mm
29
#import "
LayerTreeContext
.h"
80
void WebFullScreenManagerProxy::enterAcceleratedCompositingMode(const
LayerTreeContext
& context)
/external/webkit/Source/WebKit2/WebProcess/WebPage/
LayerTreeHost.h
40
class
LayerTreeContext
;
51
virtual const
LayerTreeContext
&
layerTreeContext
() = 0;
DrawingAreaImpl.cpp
30
#include "
LayerTreeContext
.h"
221
m_webPage->send(Messages::DrawingAreaProxy::EnterAcceleratedCompositingMode(m_backingStoreStateID, m_layerTreeHost->
layerTreeContext
()));
321
LayerTreeContext
layerTreeContext
;
327
layerTreeContext
= m_layerTreeHost->
layerTreeContext
();
338
m_webPage->send(Messages::DrawingAreaProxy::DidUpdateBackingStoreState(m_backingStoreStateID, updateInfo,
layerTreeContext
));
/external/webkit/Source/WebKit2/UIProcess/gtk/
WebFullScreenManagerProxyGtk.cpp
64
void WebFullScreenManagerProxy::enterAcceleratedCompositingMode(const
LayerTreeContext
& context)
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/mac/
LayerTreeHostCAMac.h
53
virtual void platformInitialize(
LayerTreeContext
&);
LayerTreeHostCAMac.mm
60
void LayerTreeHostCAMac::platformInitialize(
LayerTreeContext
&
layerTreeContext
)
67
layerTreeContext
.contextID = WKCARemoteLayerClientGetClientId(m_remoteLayerClient.get());
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.h
29
#include "
LayerTreeContext
.h"
58
virtual const
LayerTreeContext
&
layerTreeContext
();
77
virtual void platformInitialize(
LayerTreeContext
&) = 0;
85
LayerTreeContext
m_layerTreeContext;
LayerTreeHostCA.cpp
88
const
LayerTreeContext
& LayerTreeHostCA::
layerTreeContext
()
/external/webkit/Source/WebKit2/WebProcess/FullScreen/mac/
WebFullScreenManagerMac.h
31
#import "
LayerTreeContext
.h"
57
LayerTreeContext
m_layerTreeContext;
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.h
66
virtual void platformInitialize(
LayerTreeContext
&);
LayerTreeHostCAWin.cpp
121
void LayerTreeHostCAWin::platformInitialize(
LayerTreeContext
&)
/external/webkit/Source/WebKit2/UIProcess/API/mac/
WKViewInternal.h
42
class
LayerTreeContext
;
63
- (void)_enterAcceleratedCompositingMode:(const WebKit::
LayerTreeContext
&)
layerTreeContext
;
PageClientImpl.h
90
virtual void enterAcceleratedCompositingMode(const
LayerTreeContext
&);
PageClientImpl.mm
311
void PageClientImpl::enterAcceleratedCompositingMode(const
LayerTreeContext
&
layerTreeContext
)
313
[m_wkView _enterAcceleratedCompositingMode:
layerTreeContext
];
/external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage_p.h
25
#include "
LayerTreeContext
.h"
63
virtual void enterAcceleratedCompositingMode(const
LayerTreeContext
&);
/external/webkit/Source/WebKit2/UIProcess/win/
WebView.h
177
virtual void enterAcceleratedCompositingMode(const
LayerTreeContext
&);
Completed in 193 milliseconds
1
2