Home | History | Annotate | Download | only in widget

Lines Matching refs:Layer

16 #include "ui/compositor/layer.h"
43 // If |view| has a layer the layer is added to |layers|. Else this recurses
45 // views that are direct children of the Widgets layer.
46 void BuildRootLayers(View* view, std::vector<ui::Layer*>* layers) {
47 if (view->layer()) {
48 layers->push_back(view->layer());
902 ui::Layer* Widget::GetLayer() {
1041 if (GetCompositor() && root && root->layer())
1042 root->layer()->SetVisible(visible);
1267 const std::vector<ui::Layer*>& Widget::GetRootLayers() {