Searched refs:layer (Results 1 - 25 of 785) sorted by relevance

1234567891011>>

/external/chromium_org/ui/compositor/
H A Dlayer_owner_unittest.cc8 #include "ui/compositor/layer.h"
16 Layer* layer = new Layer; local
17 layer->SetVisible(true);
18 layer->SetOpacity(1.0f);
20 owner.SetLayer(layer);
22 ScopedLayerAnimationSettings settings(layer->GetAnimator());
23 layer->SetVisible(false);
24 layer->SetOpacity(0.0f);
25 EXPECT_TRUE(layer->visible());
26 EXPECT_EQ(1.0f, layer
[all...]
H A Ddip_util.cc10 #include "ui/compositor/layer.h"
21 float GetDeviceScaleFactor(const Layer* layer) { argument
22 return layer->device_scale_factor();
25 gfx::Point ConvertPointToDIP(const Layer* layer, argument
28 gfx::ScalePoint(point_in_pixel, 1.0f / GetDeviceScaleFactor(layer)));
31 gfx::PointF ConvertPointToDIP(const Layer* layer, argument
33 return gfx::ScalePoint(point_in_pixel, 1.0f / GetDeviceScaleFactor(layer));
36 gfx::Size ConvertSizeToDIP(const Layer* layer, argument
39 gfx::ScaleSize(size_in_pixel, 1.0f / GetDeviceScaleFactor(layer)));
42 gfx::Rect ConvertRectToDIP(const Layer* layer, argument
48 ConvertPointToPixel(const Layer* layer, const gfx::Point& point_in_dip) argument
54 ConvertSizeToPixel(const Layer* layer, const gfx::Size& size_in_dip) argument
60 ConvertRectToPixel(const Layer* layer, const gfx::Rect& rect_in_dip) argument
[all...]
H A Ddip_util.h21 COMPOSITOR_EXPORT float GetDeviceScaleFactor(const Layer* layer);
26 const Layer* layer,
29 const Layer* layer,
32 const Layer* layer,
35 const Layer* layer,
38 const Layer* layer,
41 const Layer* layer,
44 const Layer* layer,
H A Ddebug_utils.cc16 #include "ui/compositor/layer.h"
28 void PrintLayerHierarchyImp(const Layer* layer, argument
34 layer->transform().TransformPointReverse(&mouse_location);
35 bool mouse_inside_layer_bounds = layer->bounds().Contains(mouse_location);
36 mouse_location.Offset(-layer->bounds().x(), -layer->bounds().y());
44 *out << UTF8ToWide(layer->name()) << L' ' << layer; local
46 switch (layer->type()) {
52 if (layer
99 PrintLayerHierarchy(const Layer* layer, gfx::Point mouse_location) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerBlendInfo.cpp78 RenderLayer* layer = m_renderer.layer(); local
80 if (layer->parent() && (!hadBlendMode || !hasBlendMode()))
81 layer->parent()->blendInfo().dirtyAncestorChainBlendedDescendantStatus();
83 if (layer->hasCompositedLayerMapping())
84 layer->compositedLayerMapping()->setBlendMode(newBlendMode);
89 for (RenderLayer* layer = m_renderer.layer(); layer; layer
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCanvas2DLayerManager.cpp86 Canvas2DLayerBridge* layer = m_layerList.head(); local
87 while (layer) {
88 Canvas2DLayerBridge* currentLayer = layer;
90 // may result in the layer being removed from the list.
91 layer = layer->next();
96 void Canvas2DLayerManager::layerDidDraw(Canvas2DLayerBridge* layer) argument
98 if (isInList(layer)) {
99 if (layer != m_layerList.head()) {
100 m_layerList.remove(layer);
112 layerTransientResourceAllocationChanged(Canvas2DLayerBridge* layer, intptr_t deltaBytes) argument
132 Canvas2DLayerBridge* layer = m_layerList.tail(); // LRU local
152 removeLayerFromList(Canvas2DLayerBridge* layer) argument
[all...]
H A DCanvas2DLayerManagerTest.cpp77 // Because the fake layer has no canvas to query, just
160 // verify multi-layer allocation tracking
175 FakeCanvas2DLayerBridgePtr layer(adoptRef(new FakeCanvas2DLayerBridge(webContext.get(), canvas.release())));
176 layer->fakeFreeableBytes(10);
177 layer->storageAllocatedForRecordingChanged(8); // under the max
178 EXPECT_EQ(0, layer->m_freeMemoryIfPossibleCount);
179 layer->storageAllocatedForRecordingChanged(12); // over the max
180 EXPECT_EQ(1, layer->m_freeMemoryIfPossibleCount);
181 EXPECT_EQ((size_t)3, layer->m_freeableBytes);
182 EXPECT_EQ(0, layer
237 doDeferredFrameTestTask(FakeCanvas2DLayerBridge* layer, bool skipCommands) argument
252 DeferredFrameTestTask(Canvas2DLayerManagerTest* test, FakeCanvas2DLayerBridge* layer, bool skipCommands) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DContinuousPainter.cpp40 void ContinuousPainter::setNeedsDisplayRecursive(GraphicsLayer* layer, PageOverlayList* pageOverlays) argument
42 if (!layer)
45 if (pageOverlays && pageOverlays->findGraphicsLayer(layer) != WTF::kNotFound)
49 layer->setNeedsDisplay();
51 setNeedsDisplayRecursive(layer->maskLayer(), pageOverlays);
52 setNeedsDisplayRecursive(layer->contentsClippingMaskLayer(), pageOverlays);
53 setNeedsDisplayRecursive(layer->replicaLayer(), pageOverlays);
55 const Vector<GraphicsLayer*>& children = layer->children();
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DGraphicsLayerUpdater.cpp39 GraphicsLayerUpdater::UpdateContext::UpdateContext(const UpdateContext& other, const RenderLayer& layer) argument
41 , m_compositingAncestor(other.compositingContainer(layer))
43 CompositingState compositingState = layer.compositingState();
45 m_compositingAncestor = &layer;
46 if (layer.stackingNode()->isStackingContext())
47 m_compositingStackingContext = &layer;
51 const RenderLayer* GraphicsLayerUpdater::UpdateContext::compositingContainer(const RenderLayer& layer) const
53 return layer.stackingNode()->isNormalFlowOnly() ? m_compositingAncestor : m_compositingStackingContext;
65 void GraphicsLayerUpdater::update(Vector<RenderLayer*>& layersNeedingPaintInvalidation, RenderLayer& layer, UpdateType updateType, const UpdateContext& context) argument
67 if (layer
106 assertNeedsToUpdateGraphicsLayerBitsCleared(RenderLayer& layer) argument
[all...]
H A DCompositingLayerAssigner.cpp79 bool CompositingLayerAssigner::needsOwnBacking(const RenderLayer* layer) const
81 if (!m_compositor->canBeComposited(layer))
85 bool needsOwnBackingForDisabledSquashing = !m_layerSquashingEnabled && requiresSquashing(layer->compositingReasons());
87 return requiresCompositing(layer->compositingReasons()) || needsOwnBackingForDisabledSquashing || (m_compositor->staleInCompositingMode() && layer->isRootLayer());
90 CompositingStateTransitionType CompositingLayerAssigner::computeCompositedLayerUpdate(RenderLayer* layer) argument
93 if (needsOwnBacking(layer)) {
94 if (!layer->hasCompositedLayerMapping()) {
98 if (layer->hasCompositedLayerMapping())
102 if (!layer
114 getReasonsPreventingSquashing(const RenderLayer* layer, const CompositingLayerAssigner::SquashingState& squashingState) argument
165 updateSquashingAssignment(RenderLayer* layer, SquashingState& squashingState, const CompositingStateTransitionType compositedLayerUpdate, Vector<RenderLayer*>& layersNeedingRepaint) argument
224 assignLayersToBackingsInternal(RenderLayer* layer, SquashingState& squashingState, bool& layersChanged, Vector<RenderLayer*>& layersNeedingRepaint) argument
[all...]
H A DCompositingInputsUpdater.cpp25 void CompositingInputsUpdater::update(RenderLayer* layer, UpdateType updateType, AncestorInfo info) argument
27 if (!layer->childNeedsCompositingInputsUpdate() && updateType != ForceUpdate)
30 m_geometryMap.pushMappingsToAncestor(layer, layer->parent());
32 if (layer->hasCompositedLayerMapping())
33 info.enclosingCompositedLayer = layer;
35 if (layer->needsCompositingInputsUpdate()) {
44 if (!layer->isRootLayer()) {
45 properties.clippedAbsoluteBoundingBox = enclosingIntRect(m_geometryMap.absoluteRect(layer->boundingBoxForCompositingOverlapTest()));
52 IntRect clipRect = pixelSnappedIntRect(layer
83 assertNeedsCompositingInputsUpdateBitsCleared(RenderLayer* layer) argument
[all...]
H A DGraphicsLayerTreeBuilder.cpp48 static bool shouldAppendLayer(const RenderLayer& layer) argument
52 Node* node = layer.renderer()->node();
58 void GraphicsLayerTreeBuilder::rebuild(RenderLayer& layer, GraphicsLayerVector& childLayersOfEnclosingLayer) argument
60 // Make the layer compositing if necessary, and set up clipping and content layers.
64 layer.stackingNode()->updateLayerListsIfNeeded();
66 const bool hasCompositedLayerMapping = layer.hasCompositedLayerMapping();
67 CompositedLayerMappingPtr currentCompositedLayerMapping = layer.compositedLayerMapping();
69 // If this layer has a compositedLayerMapping, then that is where we place subsequent children GraphicsLayers.
70 // Otherwise children continue to append to the child list of the enclosing layer.
75 LayerListMutationDetector mutationChecker(layer
[all...]
/external/chromium_org/cc/layers/
H A Dlayer_utils.cc15 bool HasAnimationThatInflatesBounds(const LayerImpl& layer) { argument
16 return layer.layer_animation_controller()->HasAnimationThatInflatesBounds();
19 bool HasFilterAnimationThatInflatesBounds(const LayerImpl& layer) { argument
20 return layer.layer_animation_controller()
24 bool HasTransformAnimationThatInflatesBounds(const LayerImpl& layer) { argument
25 return layer.layer_animation_controller()
29 inline bool HasAncestorTransformAnimation(const LayerImpl& layer) { argument
30 return layer.screen_space_transform_is_animating();
33 inline bool HasAncestorFilterAnimation(const LayerImpl& layer) { argument
34 for (const LayerImpl* current = &layer; curren
[all...]
H A Dlayer_impl_unittest.cc169 // Changing these properties only affects the layer itself.
188 // Changing this property does not cause the layer to be marked as changed
189 // but does cause the layer to need to push properties.
193 // Changing these properties should cause the layer to need to push properties
254 LayerImpl* layer = layer_ptr.get(); local
256 layer->SetScrollClipLayer(root->id());
276 VERIFY_NEEDS_UPDATE_DRAW_PROPERTIES(layer->SetFilters(arbitrary_filters));
277 VERIFY_NO_NEEDS_UPDATE_DRAW_PROPERTIES(layer->SetFilters(arbitrary_filters));
278 VERIFY_NEEDS_UPDATE_DRAW_PROPERTIES(layer->SetFilters(FilterOperations()));
279 VERIFY_NEEDS_UPDATE_DRAW_PROPERTIES(layer
359 scoped_ptr<LayerImpl> layer = LayerImpl::Create(host_impl.active_tree(), 1); local
390 scoped_ptr<LayerImpl> layer = LayerImpl::Create(host_impl.active_tree(), 1); local
432 LayerImpl* layer() { function in class:cc::__anon2642::LayerImplScrollTest
[all...]
H A Dpicture_layer_unittest.cc36 scoped_refptr<PictureLayer> layer = PictureLayer::Create(&client); local
37 layer->SetBounds(gfx::Size(10, 10));
40 host->SetRootLayer(layer);
41 layer->SetIsDrawable(true);
42 layer->SavePaintProperties();
46 layer->Update(queue.get(), &occlusion);
48 layer->SetBounds(gfx::Size(0, 0));
49 layer->SavePaintProperties();
51 // a layer with empty bounds.
64 layer
74 scoped_refptr<PictureLayer> layer = PictureLayer::Create(&client); local
89 scoped_refptr<PictureLayer> layer = PictureLayer::Create(&client); local
[all...]
/external/chromium_org/ppapi/c/
H A Dppb_compositor_layer.h70 * Determines if a resource is a compositor layer resource.
75 * resource is a compositor layer resource or <code>PP_FALSE</code>
80 * Sets the color of a solid color layer. If the layer is uninitialized,
81 * it will initialize the layer first, and then set its color.
82 * If the layer has been initialized to another kind of layer, the layer will
85 * param[in] layer A <code>PP_Resource</code> corresponding to a compositor
86 * layer resourc
[all...]
/external/chromium-trace/trace-viewer/src/cc/
H A Dlayer_tree_impl.js37 function visitLayer(layer, depth, isMask, isReplica) {
38 func(layer, depth, isMask, isReplica);
39 for (var i = 0; i < layer.children.length; i++)
40 visitLayer(layer.children[i], depth + 1);
41 if (layer.maskLayer)
42 visitLayer(layer, depth + 1, true, false);
43 if (layer.replicaLayer)
44 visitLayer(layer, depth + 1, false, true);
50 function visitLayer(layer) {
51 if (layer
[all...]
/external/chromium_org/ash/wm/
H A Dwindow_animations_unittest.cc14 #include "ui/compositor/layer.h"
70 EXPECT_TRUE(window->layer()->visible());
77 EXPECT_EQ(0.0f, window->layer()->GetTargetOpacity());
78 EXPECT_FALSE(window->layer()->GetTargetVisibility());
79 EXPECT_FALSE(window->layer()->visible());
86 EXPECT_EQ(0.0f, window->layer()->GetTargetBrightness());
87 EXPECT_EQ(0.0f, window->layer()->GetTargetGrayscale());
88 EXPECT_TRUE(window->layer()->visible());
91 window->layer()->GetAnimator()->Step(base::TimeTicks::Now() +
93 EXPECT_EQ(0.0f, window->layer()
175 Layer* layer = window->layer(); local
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_common.cc12 #include "cc/layers/layer.h"
43 static gfx::Vector2dF GetEffectiveScrollDelta(LayerType* layer) { argument
44 gfx::Vector2dF scroll_delta = layer->ScrollDelta();
46 // compositor thread since the commit for this layer tree's source frame.
49 if (layer->scroll_parent())
50 scroll_delta += layer->scroll_parent()->ScrollDelta();
55 static gfx::Vector2dF GetEffectiveTotalScrollOffset(LayerType* layer) { argument
56 gfx::Vector2dF offset = layer->TotalScrollOffset();
59 // scroll children's positions by the main thread layer positioning code.
60 if (layer
116 NextTargetSurface(LayerType* layer) argument
169 UpdateClipRectsForClipChild( const LayerType* layer, gfx::Rect* clip_rect_in_parent_target_space, bool* subtree_should_be_clipped) argument
240 UpdateAccumulatedSurfaceState( LayerType* layer, const gfx::Rect& drawable_content_rect, std::vector<AccumulatedSurfaceState<LayerType> >* accumulated_surface_state) argument
324 IsRootLayer(LayerType* layer) argument
329 LayerIsInExisting3DRenderingContext(LayerType* layer) argument
335 IsRootLayerOfNewRenderingContext(LayerType* layer) argument
343 IsLayerBackFaceVisible(LayerType* layer) argument
358 IsSurfaceBackFaceVisible(LayerType* layer, const gfx::Transform& draw_transform) argument
373 LayerClipsSubtree(LayerType* layer) argument
378 CalculateVisibleContentRect( LayerType* layer, const gfx::Rect& clip_rect_of_target_surface_in_target_space, const gfx::Rect& layer_rect_in_target_space) argument
417 TransformToParentIsKnown(LayerImpl* layer) argument
419 TransformToParentIsKnown(Layer* layer) argument
423 TransformToScreenIsKnown(LayerImpl* layer) argument
425 TransformToScreenIsKnown(Layer* layer) argument
430 LayerShouldBeSkipped(LayerType* layer, bool layer_is_drawn) argument
472 HasInvertibleOrAnimatedTransform(LayerType* layer) argument
476 SubtreeShouldBeSkipped(LayerImpl* layer, bool layer_is_drawn) argument
511 SubtreeShouldBeSkipped(Layer* layer, bool layer_is_drawn) argument
540 SavePaintPropertiesLayer(LayerImpl* layer) argument
542 SavePaintPropertiesLayer(Layer* layer) argument
552 SubtreeShouldRenderToSeparateSurface( LayerType* layer, bool axis_aligned_with_respect_to_parent) argument
683 ComputeSizeDeltaCompensation( LayerImpl* layer, LayerImpl* container, const gfx::Vector2dF& position_offset) argument
748 ApplyPositionAdjustment( Layer* layer, Layer* container, const gfx::Transform& scroll_compensation, gfx::Transform* combined_transform) argument
753 ApplyPositionAdjustment( LayerImpl* layer, LayerImpl* container, const gfx::Transform& scroll_compensation, gfx::Transform* combined_transform) argument
835 ComputeScrollCompensationMatrixForChildren( LayerImpl* layer, const gfx::Transform& parent_matrix, const gfx::Transform& current_scroll_compensation_matrix, const gfx::Vector2dF& scroll_delta) argument
922 UpdateLayerScaleDrawProperties( LayerType* layer, float ideal_contents_scale, float maximum_animation_contents_scale, float page_scale_factor, float device_scale_factor) argument
935 CalculateContentsScale( LayerImpl* layer, float contents_scale, float device_scale_factor, float page_scale_factor, float maximum_animation_contents_scale, bool animating_transform_to_screen) argument
946 CalculateContentsScale( Layer* layer, float contents_scale, float device_scale_factor, float page_scale_factor, float maximum_animation_contents_scale, bool animating_transform_to_screen) argument
990 UpdateLayerContentsScale( LayerImpl* layer, bool can_adjust_raster_scale, float ideal_contents_scale, float device_scale_factor, float page_scale_factor, float maximum_animation_contents_scale, bool animating_transform_to_screen) argument
1006 UpdateLayerContentsScale( Layer* layer, bool can_adjust_raster_scale, float ideal_contents_scale, float device_scale_factor, float page_scale_factor, float maximum_animation_contents_scale, bool animating_transform_to_screen) argument
1058 CalculateAnimationContentsScale( Layer* layer, bool ancestor_is_animating_scale, float ancestor_maximum_animation_contents_scale, const gfx::Transform& parent_transform, const gfx::Transform& combined_transform, bool* combined_is_animating_scale, float* combined_maximum_animation_contents_scale) argument
1070 CalculateAnimationContentsScale( LayerImpl* layer, bool ancestor_is_animating_scale, float ancestor_maximum_animation_contents_scale, const gfx::Transform& ancestor_transform, const gfx::Transform& combined_transform, bool* combined_is_animating_scale, float* combined_maximum_animation_contents_scale) argument
1145 CreateOrReuseRenderSurface( LayerType* layer) argument
1157 MarkLayerWithRenderSurfaceLayerListId( LayerTypePtr layer, int current_render_surface_layer_list_id) argument
1165 MarkMasksWithRenderSurfaceLayerListId( LayerTypePtr layer, int current_render_surface_layer_list_id) argument
1242 PreCalculateMetaInformation( LayerType* layer, PreCalculateMetaInformationRecursiveData* recursive_data) argument
1369 GetChildContainingLayer(const LayerType& parent, LayerType* layer) argument
1380 AddScrollParentChain(std::vector<LayerType*>* out, const LayerType& parent, LayerType* layer) argument
1443 GetNewDescendantsStartIndexAndCount(LayerType* layer, size_t* start_index, size_t* count) argument
1451 GetNewRenderSurfacesStartIndexAndCount(LayerType* layer, size_t* start_index, size_t* count) argument
1497 CalculateDrawPropertiesInternal( LayerType* layer, const SubtreeGlobals<LayerType>& globals, const DataForRecursion<LayerType>& data_from_ancestor, typename LayerType::RenderSurfaceListType* render_surface_layer_list, typename LayerType::LayerListType* layer_list, std::vector<AccumulatedSurfaceState<LayerType> >* accumulated_surface_state, int current_render_surface_layer_list_id) argument
[all...]
H A Dtree_synchronizer.cc15 #include "cc/layers/layer.h"
90 LayerType* layer,
92 scoped_ptr<LayerImpl> layer_impl = old_layers->take(layer->id());
95 layer_impl = layer->CreateLayerImpl(tree_impl);
97 (*new_layers)[layer->id()] = layer_impl.get();
105 LayerType* layer,
107 if (!layer)
111 ReuseOrCreateLayerImpl(new_layers, old_layers, layer, tree_impl);
114 for (size_t i = 0; i < layer->children().size(); ++i) {
116 new_layers, old_layers, layer
88 ReuseOrCreateLayerImpl(RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, LayerType* layer, LayerTreeImpl* tree_impl) argument
102 SynchronizeTreesRecursiveInternal( RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, LayerType* layer, LayerTreeImpl* tree_impl) argument
127 SynchronizeTreesRecursive( RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, Layer* layer, LayerTreeImpl* tree_impl) argument
136 SynchronizeTreesRecursive( RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, LayerImpl* layer, LayerTreeImpl* tree_impl) argument
146 UpdateScrollbarLayerPointersRecursiveInternal( const RawPtrLayerImplMap* new_layers, LayerType* layer) argument
172 UpdateScrollbarLayerPointersRecursive(const RawPtrLayerImplMap* new_layers, Layer* layer) argument
178 UpdateScrollbarLayerPointersRecursive(const RawPtrLayerImplMap* new_layers, LayerImpl* layer) argument
187 PushPropertiesInternal( LayerType* layer, LayerImpl* layer_impl, size_t* num_dependents_need_push_properties_for_parent) argument
239 CheckScrollAndClipPointersRecursive(Layer* layer, LayerImpl* layer_impl) argument
295 PushProperties(Layer* layer, LayerImpl* layer_impl) argument
305 PushProperties(LayerImpl* layer, LayerImpl* layer_impl) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DGraphicsLayerFactoryChromium.cpp47 OwnPtr<GraphicsLayer> layer = adoptPtr(new GraphicsLayer(client)); local
48 m_webView->registerForAnimations(layer->platformLayer());
49 return layer.release();
/external/chromium_org/third_party/skia/src/gpu/
H A DGrLayerCache.cpp27 static bool LessThan(const GrCachedLayer& layer, const PictureLayerKey& key) { argument
28 if (layer.pictureID() == key.pictureID()) {
29 return layer.layerID() < key.layerID();
32 return layer.pictureID() < key.pictureID();
35 static bool Equals(const GrCachedLayer& layer, const PictureLayerKey& key) { argument
36 return layer.pictureID() == key.pictureID() && layer.layerID() == key.layerID();
58 // The layer cache only gets 1 plot
70 GrCachedLayer* layer = fLayerPool.alloc(); local
73 layer
81 GrCachedLayer* layer = fLayerHash.find(PictureLayerKey(picture->uniqueID(), layerID)); local
[all...]
/external/skia/src/gpu/
H A DGrLayerCache.cpp27 static bool LessThan(const GrCachedLayer& layer, const PictureLayerKey& key) { argument
28 if (layer.pictureID() == key.pictureID()) {
29 return layer.layerID() < key.layerID();
32 return layer.pictureID() < key.pictureID();
35 static bool Equals(const GrCachedLayer& layer, const PictureLayerKey& key) { argument
36 return layer.pictureID() == key.pictureID() && layer.layerID() == key.layerID();
58 // The layer cache only gets 1 plot
70 GrCachedLayer* layer = fLayerPool.alloc(); local
73 layer
81 GrCachedLayer* layer = fLayerHash.find(PictureLayerKey(picture->uniqueID(), layerID)); local
[all...]
/external/chromium_org/content/renderer/compositor_bindings/
H A Dweb_scrollbar_layer_impl.cc7 #include "cc/layers/layer.h"
57 blink::WebLayer* WebScrollbarLayerImpl::layer() { function in class:content::WebScrollbarLayerImpl
61 void WebScrollbarLayerImpl::setScrollLayer(blink::WebLayer* layer) { argument
63 layer ? static_cast<WebLayerImpl*>(layer)->layer() : 0;
64 layer_->layer()->ToScrollbarLayer()->SetScrollLayer(scroll_layer->id());
67 void WebScrollbarLayerImpl::setClipLayer(blink::WebLayer* layer) { argument
69 layer ? static_cast<WebLayerImpl*>(layer)
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
H A DLayerTreeOutline.js56 * @param {?WebInspector.Layer} layer
58 selectLayer: function(layer)
61 var node = layer && this._treeOutline.getCachedTreeElement(layer);
69 * @param {?WebInspector.Layer} layer
71 hoverLayer: function(layer)
73 var node = layer && this._treeOutline.getCachedTreeElement(layer);
91 * @param {!WebInspector.Layer} layer
94 function updateLayer(layer)
[all...]

Completed in 600 milliseconds

1234567891011>>