Home | History | Annotate | Download | only in widget

Lines Matching refs:layer

22 #include "ui/compositor/layer.h"
226 return window_ ? window_->layer()->GetCompositor() : NULL;
230 return window_ ? window_->layer()->GetCompositor() : NULL;
233 ui::Layer* NativeWidgetAura::GetLayer() {
234 return window_ ? window_->layer() : NULL;
589 window_->layer()->SetOpacity(opacity / 255.0);
731 // handles the case of a maximize animation acquiring the layer (acquiring a
732 // layer results in clearing the bounds).
757 // Don't descend into |child| if there is a view with a Layer that contains
758 // the point and is stacked above |child|s layer.
759 typedef std::vector<ui::Layer*> Layers;
765 std::find(window_->layer()->children().begin(),
766 window_->layer()->children().end(), child->layer()));
767 if (child_layer_iter == window_->layer()->children().end())
770 for (std::vector<ui::Layer*>::const_reverse_iterator i = root_layers.rbegin();
772 ui::Layer* layer = *i;
773 if (layer->visible() && layer->bounds().Contains(location)) {
775 std::find(window_->layer()->children().begin(),
776 window_->layer()->children().end(), layer));