Home
last modified time | relevance | path

Searched refs:background_ (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/ash/wm/maximize_mode/
Dworkspace_backdrop_delegate.cc27 : background_(NULL), in WorkspaceBackdropDelegate()
30 background_ = new views::Widget; in WorkspaceBackdropDelegate()
39 background_->Init(params); in WorkspaceBackdropDelegate()
43 background_->GetNativeView(), in WorkspaceBackdropDelegate()
45 background_->GetNativeView()->SetName("WorkspaceBackdropDelegate"); in WorkspaceBackdropDelegate()
46 background_->GetNativeView()->layer()->SetColor(SK_ColorBLACK); in WorkspaceBackdropDelegate()
48 background_->GetNativeView()->layer()->SetBounds(params.bounds); in WorkspaceBackdropDelegate()
57 background_->GetNativeView()); in ~WorkspaceBackdropDelegate()
58 background_->Close(); in ~WorkspaceBackdropDelegate()
59 background_->GetNativeView()->layer()->SetOpacity(0.0f); in ~WorkspaceBackdropDelegate()
[all …]
Dworkspace_backdrop_delegate.h64 views::Widget* background_; variable
/external/chromium_org/pdf/
Dprogress_control.cc65 background_ = background; in Reconfigure()
68 CalculateLayout(owner()->GetInstance(), images_, background_, text_, in Reconfigure()
207 if (rect().size() == background_.size()) { in AdjustBackground()
208 CopyImage(background_, pp::Rect(background_.size()), in AdjustBackground()
224 int slice_x = background_.size().width() / 3; in AdjustBackground()
225 int slice_y = background_.size().height() / 3; in AdjustBackground()
230 CopyImage(background_, src_rc, &ctrl_background_, dest_rc, false); in AdjustBackground()
233 src_rc.set_x(background_.size().width() - slice_x); in AdjustBackground()
235 CopyImage(background_, src_rc, &ctrl_background_, dest_rc, false); in AdjustBackground()
238 src_rc.set_y(background_.size().height() - slice_y); in AdjustBackground()
[all …]
Dpage_indicator.cc42 background_ = background; in Configure()
43 pp::Rect rc(origin, background_.size()); in Configure()
63 pp::ImageData buffer(owner()->GetInstance(), background_.format(), in Paint()
64 background_.size(), false); in Paint()
65 CopyImage(background_, pp::Rect(background_.size()), in Paint()
66 &buffer, pp::Rect(background_.size()), false); in Paint()
Ddraw_utils.h73 uint32 background() const { return background_; } in background()
78 uint32 background_; variable
Dpage_indicator.h61 pp::ImageData background_; variable
Dprogress_control.h63 pp::ImageData background_; variable
Ddraw_utils.cc208 : depth_(depth), factor_(factor), background_(background) { in ShadowMatrix()
/external/chromium_org/ash/system/tray/
Dtray_background_view.cc303 background_(NULL), in TrayBackgroundView()
431 if (!background_ || draw_background_as_active_) in UpdateBackground()
433 background_->set_alpha(hide_background_animator_.alpha() + in UpdateBackground()
449 background_ = new TrayBackground(this); in SetContentsBackground()
450 tray_container_->set_background(background_); in SetContentsBackground()
632 if (!background_) in SetDrawBackgroundAsActive()
637 background_->set_color(kTrayBackgroundPressedColor); in SetDrawBackgroundAsActive()
639 background_->set_alpha(kTrayBackgroundHoverAlpha); in SetDrawBackgroundAsActive()
641 background_->set_alpha(kTrayBackgroundAlpha); in SetDrawBackgroundAsActive()
Dtray_background_view.h175 TrayBackground* background_; variable
/external/chromium_org/ui/app_list/views/
Dtile_item_view.cc79 background_(new TileItemBackground()) { in TileItemView()
80 set_background(background_); in TileItemView()
126 background_->set_strip_color( in SetAppListItem()
Dtile_item_view.h44 TileItemBackground* background_; variable
/external/chromium_org/ui/file_manager/file_manager/background/js/
Dfile_operation_handler.js18 this.background_ = background;
169 this.background_.tryClose();
235 this.background_.tryClose();
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
Dfirst_run.js59 background_: null,
85 this.background_ = $('background');
/external/chromium_org/ash/wm/panels/
Dpanel_layout_manager.cc206 : background_(NULL) { in PanelCalloutWidget()
221 if (background_->alignment() != alignment) { in SetAlignment()
222 background_->set_alignment(alignment); in SetAlignment()
243 background_ = new CalloutWidgetBackground; in InitWidget()
244 content_view->set_background(background_); in InitWidget()
250 CalloutWidgetBackground* background_; member in ash::PanelCalloutWidget
/external/chromium_org/ui/views/
Dview.h511 const Background* background() const { return background_.get(); } in background()
512 Background* background() { return background_.get(); } in background()
1556 scoped_ptr<Background> background_; variable
Dview.cc816 background_.reset(b); in set_background()
1431 if (background_.get()) { in OnPaintBackground()
1435 background_->Paint(canvas, this); in OnPaintBackground()