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

12

/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_aura.cc25 void set_native_view(aura::Window* native_view) { argument
26 native_view_ = native_view;
78 if (host_->native_view()) {
79 host_->native_view()->RemoveObserver(this);
80 host_->native_view()->ClearProperty(views::kHostViewKey);
81 host_->native_view()->ClearProperty(aura::client::kHostWindowKey);
83 if (host_->native_view()->parent() == &clipping_window_)
84 clipping_window_.RemoveChild(host_->native_view());
91 clipping_window_delegate_->set_native_view(host_->native_view());
92 host_->native_view()
[all...]
H A Dnative_view_host.h42 void Attach(gfx::NativeView native_view);
77 gfx::NativeView native_view() const { return native_view_; } function in class:views::NativeViewHost
H A Dnative_view_host.cc33 void NativeViewHost::Attach(gfx::NativeView native_view) { argument
34 DCHECK(native_view);
36 native_view_ = native_view;
44 Widget* widget = Widget::GetWidgetForNativeView(native_view);
215 Widget::GetAllChildWidgets(native_view(), &widgets);
H A Dnative_view_host_aura_unittest.cc182 host()->native_view()->bounds().ToString());
191 host()->native_view()->bounds().ToString());
199 host()->native_view()->bounds().ToString());
216 host()->native_view()->bounds().ToString());
224 host()->native_view()->bounds().ToString());
232 host()->native_view()->bounds().ToString());
241 host()->native_view()->bounds().ToString());
H A Dnative_view_host_unittest.cc78 gfx::NativeView parent_before = native_view() ?
79 GetNativeParent(native_view()) : NULL;
81 gfx::NativeView parent_after = native_view() ?
82 GetNativeParent(native_view()) : NULL;
172 scoped_ptr<Widget> test_child(CreateChildForHost(host0->native_view(),
/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_org/chrome/browser/ui/views/
H A Dchrome_views_delegate_aura.cc12 gfx::NativeView native_view = params.parent ? params.parent : params.context; local
13 if (native_view && chrome::IsNativeViewInAsh(native_view))
H A Dcolor_chooser_win.cc102 gfx::NativeView native_view = web_contents->GetNativeView(); local
103 if (GetHostDesktopTypeForNativeView(native_view) == HOST_DESKTOP_TYPE_ASH)
/external/chromium_org/chrome/browser/ui/autofill/
H A Dpassword_generation_popup_view_browsertest.cc23 gfx::NativeView native_view)
31 native_view) {}
43 gfx::NativeView native_view = variable
48 browser()->tab_strip_model()->GetActiveWebContents(), native_view);
22 TestPasswordGenerationPopupController(content::WebContents* web_contents, gfx::NativeView native_view) argument
/external/chromium_org/chrome/browser/tab_contents/
H A Dnavigation_metrics_recorder.cc41 gfx::NativeView native_view = rwhv->GetNativeView(); local
42 if (native_view) {
44 chrome::GetHostDesktopTypeForNativeView(native_view);
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_mac.h26 BrowserAccessibilityCocoa* native_view() const { function in class:content::BrowserAccessibilityMac
/external/chromium_org/ui/message_center/views/
H A Dtoast_contents_view.cc244 gfx::NativeView native_view = widget->GetNativeView();
245 if (!native_view || !collection_.get())
249 Screen::GetScreenFor(native_view)->GetDisplayNearestWindow(native_view));
257 gfx::NativeView native_view = widget->GetNativeView();
258 if (!native_view || !collection_.get())
262 Screen::GetScreenFor(native_view)->GetDisplayNearestWindow(native_view));
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_service_views_browsertest.cc148 gfx::NativeView native_view = app_list_view->GetWidget()->GetNativeView(); local
149 ASSERT_TRUE(native_view);
155 views::Widget::GetAllOwnedWidgets(native_view, &owned_widgets);
165 views::Widget::GetAllOwnedWidgets(native_view, &owned_widgets);
174 views::Widget::GetAllOwnedWidgets(native_view, &owned_widgets);
/external/chromium_org/ui/views/widget/
H A Dnative_widget_private.h55 gfx::NativeView native_view);
62 gfx::NativeView native_view);
64 static void GetAllChildWidgets(gfx::NativeView native_view,
66 static void GetAllOwnedWidgets(gfx::NativeView native_view,
68 static void ReparentNativeView(gfx::NativeView native_view,
180 virtual void StackAbove(gfx::NativeView native_view) = 0;
182 virtual void StackBelow(gfx::NativeView native_view) = 0;
H A Dnative_widget_aura.cc423 void NativeWidgetAura::StackAbove(gfx::NativeView native_view) { argument
425 window_->parent() == native_view->parent())
426 window_->parent()->StackChildAbove(window_, native_view);
434 void NativeWidgetAura::StackBelow(gfx::NativeView native_view) { argument
436 window_->parent() == native_view->parent())
437 window_->parent()->StackChildBelow(window_, native_view);
1061 gfx::NativeView native_view) {
1063 return reinterpret_cast<NativeWidgetPrivate*>(native_view->user_data());
1075 gfx::NativeView native_view) {
1076 aura::Window* window = native_view;
1060 GetNativeWidgetForNativeView( gfx::NativeView native_view) argument
1074 GetTopLevelNativeWidget( gfx::NativeView native_view) argument
1088 GetAllChildWidgets(gfx::NativeView native_view, Widget::Widgets* children) argument
1106 GetAllOwnedWidgets(gfx::NativeView native_view, Widget::Widgets* owned) argument
1121 ReparentNativeView(gfx::NativeView native_view, gfx::NativeView new_parent) argument
[all...]
H A Dwidget.h306 static Widget* GetWidgetForNativeView(gfx::NativeView native_view);
310 // starting at |native_view|. Top level widget is a widget with TYPE_WINDOW,
312 // focus manager. This may be itself if the |native_view| is top level,
314 static Widget* GetTopLevelWidgetForNativeView(gfx::NativeView native_view);
316 // Returns all Widgets in |native_view|'s hierarchy, including itself if
318 static void GetAllChildWidgets(gfx::NativeView native_view,
321 // Returns all non-child Widgets owned by |native_view|.
322 static void GetAllOwnedWidgets(gfx::NativeView native_view,
325 // Re-parent a NativeView and notify all Widgets in |native_view|'s hierarchy
327 static void ReparentNativeView(gfx::NativeView native_view,
[all...]
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_process_launcher.h43 gfx::NativeView native_view);
/external/chromium_org/ash/
H A Dpopup_message.cc196 gfx::NativeView native_view = widget_->GetNativeView(); local
198 native_view, wm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL);
200 native_view, wm::ANIMATE_HIDE);
221 gfx::NativeView native_view = widget_->GetNativeView();
223 native_view, wm::ANIMATE_NONE);
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dpepper_flash_drm_host.cc81 gfx::NativeView native_view = rfh->GetNativeView();
83 aura::WindowTreeHost* host = native_view->GetHost();
88 HWND window = native_view;
/external/chromium_org/chrome/browser/ui/views/profiles/
H A Duser_manager_view.cc133 gfx::NativeView native_view = local
136 bounds = gfx::Screen::GetScreenFor(native_view)->
137 GetDisplayNearestWindow(native_view).work_area();
/external/chromium_org/ash/system/chromeos/rotation/
H A Dtray_rotation_lock.cc97 gfx::NativeView native_view = system_tray->GetWidget()->GetNativeView(); local
99 GetDisplayNearestWindow(native_view);
/external/chromium_org/ash/shelf/
H A Dshelf_tooltip_manager.cc323 gfx::NativeView native_view = widget_->GetNativeView();
325 native_view, wm::ANIMATE_NONE);
358 gfx::NativeView native_view = widget_->GetNativeView(); local
360 native_view, wm::WINDOW_VISIBILITY_ANIMATION_TYPE_VERTICAL);
362 native_view, wm::ANIMATE_HIDE);

Completed in 708 milliseconds

12