Home | History | Annotate | Download | only in tabs

Lines Matching refs:container_

46   container_.reset(views::Widget::CreateWidget(params));
48 static_cast<views::WidgetWin*>(container_.get())->
58 container_->Init(NULL, gfx::Rect(gfx::Point(), container_size));
59 container_->SetContentsView(this);
60 container_->SetOpacity(kTransparentAlpha);
61 container_->SetBounds(gfx::Rect(gfx::Point(), container_size));
66 container_->CloseNow();
85 int show_flags = container_->IsVisible() ? SWP_NOZORDER : SWP_SHOWWINDOW;
86 SetWindowPos(container_->GetNativeView(), HWND_TOP, x, y, 0, 0,
89 gfx::Rect bounds = container_->GetWindowScreenBounds();
90 container_->SetBounds(gfx::Rect(x, y, bounds.width(), bounds.height()));
91 if (!container_->IsVisible())
92 container_->Show();