Searched refs:child_window (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/hang_monitor/
H A Dhung_window_detector.cc78 bool HungWindowDetector::CheckChildWindow(HWND child_window) { argument
82 if (!IsWindow(child_window)) {
91 GetWindowThreadProcessId(child_window, &child_window_process_id);
100 reinterpret_cast<int>(GetProp(child_window, kHungChildWindowTimeout));
107 if (0 == SendMessageTimeout(child_window,
117 SetProp(child_window, kHungChildWindowTimeout,
121 notification_->OnHungWindowDetected(child_window, top_level_window_,
124 if (!IsChild(top_level_window_, child_window)) {
129 RemoveProp(child_window, kHungChildWindowTimeout);
140 GetWindowThreadProcessId(child_window,
158 ChildWndEnumProc(HWND child_window, LPARAM param) argument
[all...]
H A Dhung_window_detector.h70 bool CheckChildWindow(HWND child_window);
72 static BOOL CALLBACK ChildWndEnumProc(HWND child_window, LPARAM param);
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dmouse_cursor_monitor_x11.cc147 Window child_window; local
151 Bool result = XQueryPointer(display(), window_, &root_window, &child_window,
158 // XQueryPointer() sets |child_window| to None if the cursor is outside
161 (window_ == root_window || child_window != None) ? INSIDE : OUTSIDE;
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_native_widget_aura.cc83 static aura::Window* CreateParentWindow(aura::Window* child_window, argument
91 child_window->SetBounds(gfx::Rect(bounds.size()));
114 child_window->AddObserver(top_level_handler);
116 top_level_handler->child_window_ = child_window;
/external/chromium_org/ash/wm/workspace/
H A Dworkspace_layout_manager_unittest.cc377 scoped_ptr<aura::Window> child_window(
380 child_window->Show();
382 EXPECT_EQ("5,6 7x8", child_window->bounds().ToString());
/external/chromium_org/ui/aura/
H A Dwindow_unittest.cc595 scoped_ptr<Window> child_window(new Window(NULL));
596 child_window->Init(aura::WINDOW_LAYER_TEXTURED);
597 child_window->Show();
600 child_window->AddObserver(&child_observer);
602 parent_window->AddChild(child_window.get());
608 child_window->RemoveObserver(&child_observer);

Completed in 316 milliseconds