HomeSort by relevance Sort by last modified time
    Searched refs:native_view (Results 26 - 50 of 83) sorted by null

12 3 4

  /external/chromium_org/ui/views/controls/native/
native_view_host.h 43 void Attach(gfx::NativeView native_view);
78 gfx::NativeView native_view() const { return native_view_; } function in class:views::NativeViewHost
native_view_host.cc 42 void NativeViewHost::Attach(gfx::NativeView native_view) {
43 DCHECK(native_view);
45 native_view_ = native_view;
54 Widget* widget = Widget::GetWidgetForNativeView(native_view);
221 Widget::GetAllChildWidgets(native_view(), &widgets);
native_view_host_unittest.cc 123 gfx::NativeView parent_before = native_view() ?
124 GetNativeParent(native_view()) : NULL;
126 gfx::NativeView parent_after = native_view() ?
127 GetNativeParent(native_view()) : NULL;
197 scoped_ptr<Widget> test_child(CreateChildForHost(host0->native_view(),
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 33 gfx::NativeView native_view();
77 // Created by us, but owned by its |native_view()|. We |release| the
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_view_gtk.h 33 gfx::NativeView native_view();
extension_popup_gtk.cc 123 host_->view()->native_view(),
154 gtk_widget_set_size_request(view->native_view(), width, height);
172 return gfx::Rect(host_->view()->native_view()->allocation);
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher.h 42 gfx::NativeView native_view);
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_view_mac.h 45 gfx::NativeView native_view();
  /external/chromium_org/chrome/browser/ui/gtk/extensions/
extension_view_gtk.h 37 gfx::NativeView native_view();
extension_popup_gtk.cc 140 gtk_widget_set_size_request(view->native_view(), width, height);
174 gtk_container_add(GTK_CONTAINER(border_box), host_->view()->native_view());
195 gtk_widget_get_allocation(host_->view()->native_view(), &allocation);
extension_view_gtk.cc 26 gfx::NativeView ExtensionViewGtk::native_view() { function in class:ExtensionViewGtk
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_win.cc 107 gfx::NativeView native_view = web_contents->GetView()->GetNativeView(); local
108 if (GetHostDesktopTypeForNativeView(native_view) == HOST_DESKTOP_TYPE_ASH)
  /external/chromium_org/ui/views/widget/
native_widget_aura.cc 418 void NativeWidgetAura::StackAbove(gfx::NativeView native_view) {
420 window_->parent() == native_view->parent())
421 window_->parent()->StackChildAbove(window_, native_view);
429 void NativeWidgetAura::StackBelow(gfx::NativeView native_view) {
431 window_->parent() == native_view->parent())
432 window_->parent()->StackChildBelow(window_, native_view);
    [all...]
native_widget_win.cc 275 void NativeWidgetWin::StackAbove(gfx::NativeView native_view) {
276 message_handler_->StackAbove(native_view);
283 void NativeWidgetWin::StackBelow(gfx::NativeView native_view) {
943 gfx::NativeView native_view) {
945 ViewProp::GetValue(native_view, kNativeWidgetKey));
956 gfx::NativeView native_view) {
957 if (!native_view)
961 HWND root = ::GetAncestor(native_view, GA_ROOT);
970 HWND parent_hwnd = native_view;
976 if (!widget && !GetNativeWidgetForNativeView(native_view)) {
    [all...]
widget.h 292 static Widget* GetWidgetForNativeView(gfx::NativeView native_view);
296 // starting at |native_view|. Top level widget is a widget with TYPE_WINDOW,
298 // focus manager. This may be itself if the |native_view| is top level,
300 static Widget* GetTopLevelWidgetForNativeView(gfx::NativeView native_view);
302 // Returns all Widgets in |native_view|'s hierarchy, including itself if
304 static void GetAllChildWidgets(gfx::NativeView native_view,
307 // Returns all non-child Widgets owned by |native_view|.
308 static void GetAllOwnedWidgets(gfx::NativeView native_view,
311 // Re-parent a NativeView and notify all Widgets in |native_view|'s hierarchy
313 static void ReparentNativeView(gfx::NativeView native_view,
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/pepper/
pepper_output_protection_message_filter.cc 80 gfx::NativeView native_view = view->GetNativeView();
81 gfx::Screen* screen = gfx::Screen::GetScreenFor(native_view);
84 gfx::Display display = screen->GetDisplayNearestWindow(native_view);
145 gfx::NativeView native_view = view->GetNativeView(); local
146 native_view->RemoveObserver(this);
162 gfx::NativeView native_view = view->GetNativeView();
165 native_view->AddObserver(this);
pepper_flash_drm_host.cc 82 gfx::NativeView native_view = view->GetNativeView();
84 aura::WindowEventDispatcher* dispatcher = native_view->GetDispatcher();
89 HWND window = native_view;
  /external/chromium_org/ash/
popup_message.cc 195 gfx::NativeView native_view = widget_->GetNativeView(); local
197 native_view, views::corewm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL);
199 native_view, views::corewm::ANIMATE_HIDE);
220 gfx::NativeView native_view = widget_->GetNativeView();
222 native_view, views::corewm::ANIMATE_NONE);
  /external/chromium_org/chrome/browser/ui/gtk/infobars/
extension_infobar_gtk.cc 109 if (gtk_widget_get_parent(view_->native_view())) {
110 gtk_widget_reparent(view_->native_view(), alignment_);
112 gtk_container_add(GTK_CONTAINER(alignment_), view_->native_view());
119 signals()->Connect(view_->native_view(), "expose-event",
121 signals()->Connect(view_->native_view(), "size_allocate",
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_view_gtk.cc 182 g_signal_connect(view->native_view(), "focus",
184 g_signal_connect(view->native_view(), "leave-notify-event",
186 g_signal_connect(view->native_view(), "motion-notify-event",
188 g_signal_connect(view->native_view(), "scroll-event",
190 gtk_widget_add_events(view->native_view(), GDK_LEAVE_NOTIFY_MASK |
194 views::WidgetGtk::RegisterChildExposeHandler(view->native_view());
198 drag_dest_.reset(new WebDragDestGtk(tab_contents(), view->native_view()));
200 gtk_fixed_put(GTK_FIXED(GetNativeView()), view->native_view(), 0, 0);
  /external/chromium/chrome/browser/ui/views/
browser_bubble.h 96 gfx::NativeView native_view() const { return popup_->GetNativeView(); } function in class:BrowserBubble
keyboard_overlay_delegate.cc 54 view_->native_view());
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view_host.cc 87 native_host_->Attach(view_gtk->native_view());
  /external/chromium_org/ash/shelf/
shelf_tooltip_manager.cc 326 gfx::NativeView native_view = widget_->GetNativeView();
328 native_view, views::corewm::ANIMATE_NONE);
361 gfx::NativeView native_view = widget_->GetNativeView(); local
363 native_view, views::corewm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL);
365 native_view, views::corewm::ANIMATE_HIDE);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_gtk.h 94 virtual bool ContainsNativeView(gfx::NativeView native_view) const;
104 gfx::NativeView native_view() const { return view_.get(); } function in class:RenderWidgetHostViewGtk

Completed in 1528 milliseconds

12 3 4