HomeSort by relevance Sort by last modified time
    Searched defs:contents_view (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/ui/views/window/
client_view.h 30 // |widget|, |contents_view| must be valid if you want the initial size of
31 // the widget to be based on |contents_view|'s preferred size.
32 ClientView(Widget* widget, View* contents_view);
74 View* contents_view() const { return contents_view_; } function in class:views::ClientView
75 void set_contents_view(View* contents_view) {
76 contents_view_ = contents_view;
  /external/chromium_org/chrome/browser/ui/views/frame/
immersive_mode_controller_ash_browsertest.cc 89 views::View* contents_view = browser_view()->GetTabContentsContainerView(); local
116 GetRectInWidget(contents_view).y());
137 GetRectInWidget(contents_view).y());
182 GetRectInWidget(contents_view).y());
189 GetRectInWidget(contents_view).y());
  /external/chromium/chrome/browser/ui/views/
browser_bubble_gtk.cc 110 views::View* contents_view = new views::View; local
112 // We add |contents_view| to ourselves before the AddChildView() call below so
116 pop->SetContentsView(contents_view);
119 contents_view->AddChildView(pop->border_contents());
120 contents_view->AddChildView(view_);
  /external/chromium_org/ash/tooltips/
tooltip_controller_unittest.cc 55 views::View* contents_view = new views::View; local
56 widget->SetContentsView(contents_view);
59 views::View* contents_view = widget->GetContentsView(); local
60 contents_view->AddChildView(view);
61 view->SetBounds(contents_view->width(), 0, 100, 100);
62 gfx::Rect contents_view_bounds = contents_view->bounds();
64 contents_view->SetBoundsRect(contents_view_bounds);
  /external/chromium_org/ash/wm/
system_modal_container_layout_manager.cc 157 views::View* contents_view = new views::View(); local
160 contents_view->set_background(
162 modal_background_->SetContentsView(contents_view);
  /external/chromium_org/ui/views/widget/
window_reorderer_unittest.cc 60 View* contents_view = new View(); local
61 parent->SetContentsView(contents_view);
69 contents_view->AddChildView(v);
85 contents_view->AddChildView(host_view2);
93 contents_view->AddChildViewAt(host_view1, 0);
100 contents_view->ReorderChildView(host_view1, -1);
105 contents_view->ReorderChildView(host_view2, -1);
112 contents_view->ReorderChildView(v, -1);
117 contents_view->ReorderChildView(host_view2, -1);
138 View* contents_view = new View() local
199 View* contents_view = new View(); local
    [all...]
widget.cc 1347 View* contents_view = GetContentsView(); local
    [all...]
widget_unittest.cc 1299 View* contents_view = new View; local
1400 View* contents_view = new View; local
1420 View* contents_view = new View; local
    [all...]
  /external/chromium/chrome/browser/ui/views/bubble/
bubble.cc 213 views::View* contents_view = new views::View; local
214 // We add |contents_view| to ourselves before the AddChildView() call below so
218 SetContentsView(contents_view);
222 contents_view->AddChildView(contents);
234 contents_view->SetLayoutManager(new views::FillLayout);
237 contents_view->set_background(
249 contents_view->AddChildViewAt(border_contents_, 0);
251 // |contents_view| has no layout manager, so we have to explicitly position
296 // |contents_view| has no layout manager, so we have to explicitly position
  /external/chromium_org/ash/drag_drop/
drag_drop_controller_unittest.cc 264 views::View* contents_view = new views::View; local
265 widget->SetContentsView(contents_view);
268 views::View* contents_view = widget->GetContentsView(); local
269 contents_view->AddChildView(view);
270 view->SetBounds(contents_view->width(), 0, 100, 100);
271 gfx::Rect contents_view_bounds = contents_view->bounds();
273 contents_view->SetBoundsRect(contents_view_bounds);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_install_dialog_view.cc 676 views::View* contents_view = scroll_view_->contents(); local
678 int content_height = contents_view->GetHeightForWidth(content_width);
681 content_height = contents_view->GetHeightForWidth(content_width);
683 contents_view->SetBounds(0, 0, content_width, content_height);
  /external/chromium_org/ui/message_center/views/
notifier_settings_view.cc 395 views::View* contents_view = new views::View(); local
396 contents_view->SetLayoutManager(
439 contents_view->AddChildView(contents_title_view);
445 contents_view->AddChildView(entry);
449 scroller_->SetContents(contents_view);
451 contents_view->SetBoundsRect(gfx::Rect(contents_view->GetPreferredSize()));
459 views::View* contents_view = scroller_->contents(); local
461 int content_height = contents_view->GetHeightForWidth(content_width);
464 content_height = contents_view->GetHeightForWidth(content_width)
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
browser_view.cc 1796 views::View* contents_view = contents_; local
    [all...]

Completed in 1103 milliseconds