Searched refs:native_view (Results 1 - 25 of 84) sorted by relevance

1234

/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_aura.cc22 if (host_->native_view()) {
23 host_->native_view()->ClearProperty(views::kHostViewKey);
24 host_->native_view()->RemoveObserver(this);
31 host_->native_view()->AddObserver(this);
32 host_->native_view()->SetProperty(views::kHostViewKey,
38 host_->native_view()->ClearProperty(views::kHostViewKey);
39 host_->native_view()->RemoveObserver(this);
40 host_->native_view()->Hide();
41 if (host_->native_view()->parent())
42 Widget::ReparentNativeView(host_->native_view(), NUL
[all...]
H A Dnative_view_host_win.cc38 ShowWindow(host_->native_view(), SW_HIDE);
45 Widget::ReparentNativeView(host_->native_view(), ui::GetHiddenWindow());
51 if (!IsWindow(host_->native_view()))
53 HWND parent_hwnd = GetParent(host_->native_view());
56 SetParent(host_->native_view(), widget_hwnd);
58 ShowWindow(host_->native_view(), SW_SHOW);
60 ShowWindow(host_->native_view(), SW_HIDE);
65 if (!IsWindow(host_->native_view()))
67 ShowWindow(host_->native_view(), SW_HIDE);
68 SetParent(host_->native_view(), NUL
[all...]
/external/chromium/chrome/browser/ui/gtk/notifications/
H A Dballoon_view_host_gtk.cc20 native_view(), new_size.width(), new_size.height());
23 gfx::NativeView BalloonViewHost::native_view() const { function in class:BalloonViewHost
24 return render_widget_host_view_->native_view();
H A Dballoon_view_host_gtk.h30 gfx::NativeView native_view() const;
/external/chromium_org/chrome/browser/ui/ash/
H A Dash_util.h12 // Returns true if |native_view/native_window| exists within the Ash
14 bool IsNativeViewInAsh(gfx::NativeView native_view);
H A Dash_util.cc14 bool IsNativeViewInAsh(gfx::NativeView native_view) { argument
28 if ((*it)->Contains(native_view))
/external/chromium_org/chrome/browser/ui/
H A Dhost_desktop.cc19 HostDesktopType GetHostDesktopTypeForNativeView(gfx::NativeView native_view) { argument
25 if (!native_view)
28 return IsNativeViewInAsh(native_view) ?
H A Dhost_desktop.h35 HostDesktopType GetHostDesktopTypeForNativeView(gfx::NativeView native_view);
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dextension_infobar_gtk.cc28 gtk_widget_unparent(view_->native_view());
64 if (gtk_widget_get_parent(view_->native_view())) {
65 gtk_widget_reparent(view_->native_view(), hbox_);
66 gtk_box_set_child_packing(GTK_BOX(hbox_), view_->native_view(),
69 gtk_box_pack_start(GTK_BOX(hbox_), view_->native_view(), TRUE, TRUE, 0);
72 g_signal_connect(view_->native_view(), "size_allocate",
/external/chromium_org/ui/views/controls/
H A Dnative_control_win.cc31 HWND hwnd = native_view();
53 native_view());
64 if (native_view())
65 EnableWindow(native_view(), enabled());
75 if (details.is_add && GetWidget() && !native_view())
83 if (!is_drawn && native_view()) {
86 HWND hwnd = native_view();
89 } else if (is_drawn && !native_view()) {
101 DCHECK(native_view());
102 SetFocus(native_view());
[all...]
/external/chromium/chrome/browser/ui/views/notifications/
H A Dballoon_view_host.h33 gfx::NativeView native_view() const { function in class:BalloonViewHost
34 return native_host_->native_view();
/external/chromium_org/chrome/browser/ui/gtk/notifications/
H A Dballoon_view_host_gtk.cc32 native_view(), new_size.width(), new_size.height());
35 gfx::NativeView BalloonViewHost::native_view() const { function in class:BalloonViewHost
H A Dballoon_view_host_gtk.h25 gfx::NativeView native_view() const;
/external/chromium_org/chrome/browser/ui/views/notifications/
H A Dballoon_view_host.h30 gfx::NativeView native_view() const { function in class:BalloonViewHost
31 return native_host_->native_view();
/external/chromium_org/ui/views/controls/combobox/
H A Dnative_combobox_win.cc51 SendMessage(native_view(), CB_RESETCONTENT, 0, 0);
62 SendMessage(native_view(), CB_ADDSTRING, 0,
69 SendMessage(native_view(), CB_SETCURSEL, combobox_->selected_index(), 0);
73 if (num_items > ComboBox_GetMinVisible(native_view()))
78 SendMessage(native_view(), CB_SETDROPPEDWIDTH, max_width, 0);
89 SendMessage(native_view(), CB_SETCURSEL, combobox_->selected_index(), 0);
97 LRESULT selected_index = SendMessage(native_view(), CB_GETCURSEL, 0, 0);
102 return SendMessage(native_view(), CB_GETDROPPEDSTATE, 0, 0) != 0;
110 GetComboBoxInfo(native_view(), &cbi);
163 return native_view();
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/notifications/
H A Dballoon_view_host_mac.h24 gfx::NativeView native_view() const;
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_view_gtk.cc24 gfx::NativeView ExtensionViewGtk::native_view() { function in class:ExtensionViewGtk
25 return render_widget_host_view_->native_view();
/external/chromium_org/ui/views/widget/
H A Dnative_widget_aura_window_observer.cc14 gfx::NativeView native_view,
16 : native_view_(native_view),
13 NativeWidgetAuraWindowObserver( gfx::NativeView native_view, internal::NativeWidgetDelegate* delegate) argument
H A Dnative_widget_private.h53 gfx::NativeView native_view);
60 gfx::NativeView native_view);
62 static void GetAllChildWidgets(gfx::NativeView native_view,
64 static void ReparentNativeView(gfx::NativeView native_view,
172 virtual void StackAbove(gfx::NativeView native_view) = 0;
174 virtual void StackBelow(gfx::NativeView native_view) = 0;
H A Dnative_widget_aura_window_observer.h24 gfx::NativeView native_view,
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_mac.h31 BrowserAccessibilityCocoa* native_view() const { function in class:BrowserAccessibilityMac
/external/chromium/chrome/browser/ui/cocoa/notifications/
H A Dballoon_view_host_mac.h28 gfx::NativeView native_view() const;
/external/chromium/chrome/browser/ui/views/
H A Ddom_view.cc19 if (native_view())
29 // Attach the native_view now if the view is already added to Widget.
59 // Attach the native_view when this is added to Widget if
62 if (is_add && GetWidget() && !native_view() && tab_contents_.get())
64 else if (!is_add && child == this && native_view())
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_mac.h31 BrowserAccessibilityCocoa* native_view() const { function in class:content::BrowserAccessibilityMac
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_process_launcher.cc57 explicit NativeProcessLauncherImpl(gfx::NativeView native_view);
67 explicit Core(gfx::NativeView native_view);
102 NativeProcessLauncherImpl::Core::Core(gfx::NativeView native_view) argument
104 native_view_(native_view) {
249 gfx::NativeView native_view)
250 : core_(new Core(native_view)) {
267 gfx::NativeView native_view) {
269 new NativeProcessLauncherImpl(native_view));
248 NativeProcessLauncherImpl( gfx::NativeView native_view) argument
266 CreateDefault( gfx::NativeView native_view) argument

Completed in 644 milliseconds

1234