Searched defs:windows (Results 1 - 25 of 89) sorted by path

1234

/external/chromium_org/apps/
H A Dapp_lifetime_monitor.cc110 AppWindowRegistry::AppWindowList windows = local
114 for (AppWindowRegistry::AppWindowList::const_iterator i = windows.begin();
115 i != windows.end();
/external/chromium_org/ash/display/
H A Ddisplay_controller.cc172 // Deactivate the window to close menu / bubble windows.
357 aura::Window::Windows windows; local
363 windows.push_back(GetWindow(it->second));
365 return windows;
474 // Swap root windows between current and new primary display.
/external/chromium_org/ash/
H A Droot_window_controller.cc147 // Docked windows have bounds handled by the layout manager in AddChild().
155 // Reparents the appropriate set of windows from |src| to |dst|.
157 // Set of windows to move.
171 // Restart iteration from the source container windows each time as they
172 // may change as a result of moving other windows.
179 // If the entire window list is modal background windows then stop.
358 // Change the target root window before closing child windows. If any child
360 // window list adding windows from the target root window's containers which
485 // Deactivate keyboard container before closing child windows and shutting
489 // panel_layout_manager_ needs to be shut down before windows ar
613 const aura::Window::Windows& windows = local
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_layout_manager.cc1017 const std::vector<aura::Window*> windows = local
1020 // Process the window list and check if there are any visible windows.
1022 for (size_t i = 0; i < windows.size(); ++i) {
1023 if (windows[i] && windows[i]->IsVisible() &&
1024 !wm::GetWindowState(windows[i])->IsMinimized() &&
1025 root_window_ == windows[i]->GetRootWindow()) {
1030 // If there are no visible windows do not hide the shelf.
/external/chromium_org/ash/wm/maximize_mode/
H A Dmaximize_mode_window_manager.cc41 // transforming windows which are currently in
121 // Reposition all non maximizeable windows.
183 MruWindowTracker::WindowList windows = local
185 // Add all existing Mru windows.
186 for (MruWindowTracker::WindowList::iterator window = windows.begin();
187 window != windows.end(); ++window) {
233 // windows.
H A Dmaximize_mode_window_manager_unittest.cc143 // Test that creating the object and destroying it without any windows should
152 // Test that existing windows will handled properly when going into maximized
155 // Bounds for windows we know can be controlled.
177 // Create the manager and make sure that all qualifying windows were detected
188 // All other windows should not have been touched.
200 // Destroy the manager again and check that the windows return to their
216 // Test that non-maximizable windows get properly handled when going into
240 // Create the manager and make sure that all qualifying windows were detected
263 // Destroy the manager again and check that the windows return to their
274 // Test that creating windows whil
682 MruWindowTracker::WindowList windows = local
696 MruWindowTracker::WindowList windows = local
709 MruWindowTracker::WindowList windows = local
[all...]
H A Dworkspace_backdrop_delegate.cc113 // We are changing the order of windows which will cause recursion.
119 // to re-arrange the two windows twice.
125 const aura::Window::Windows& windows = container_->children(); local
127 windows.rbegin();
128 window_iter != windows.rend(); ++window_iter) {
/external/chromium_org/ash/wm/
H A Dmru_window_tracker.cc25 // Adds the windows that can be cycled through for the specified window id to
26 // |windows|.
29 MruWindowTracker::WindowList* windows) {
32 windows->insert(windows->end(), children.begin(), children.end());
35 // Adds windows being dragged in the docked container to |windows| list.
37 MruWindowTracker::WindowList* windows) {
44 windows->insert(windows
27 AddTrackedWindows(aura::Window* root, int container_id, MruWindowTracker::WindowList* windows) argument
36 AddDraggedWindows(aura::Window* root, MruWindowTracker::WindowList* windows) argument
62 MruWindowTracker::WindowList windows; local
[all...]
H A Dvideo_detector.cc139 const aura::Window::Windows& windows = (*container)->children(); local
140 for (aura::Window::Windows::const_iterator window = windows.begin();
141 window != windows.end(); ++window) {
H A Dwindow_cycle_list.cc110 WindowCycleList::WindowCycleList(const WindowList& windows) argument
111 : windows_(windows),
H A Dwindow_cycle_list.h27 explicit WindowCycleList(const WindowList& windows);
35 const WindowList& windows() const { return windows_; } function in class:ash::WindowCycleList
44 // List of weak pointers to windows to use while cycling with the keyboard.
H A Dwindow_positioner.cc193 // Get a list of all windows.
194 const std::vector<aura::Window*> windows = local
197 if (windows.empty())
200 aura::Window::Windows::const_iterator iter = windows.begin();
203 iter = std::find(windows.begin(), windows.end(), active);
205 int index = (iter == windows.end()) ? 0 : (iter - windows.begin());
212 for (int i = index + windows.size(); i >= 0; i--) {
213 aura::Window* window = windows[
506 const std::vector<aura::Window*> windows = local
[all...]
/external/chromium_org/ash/wm/overview/
H A Dwindow_grid.cc135 const std::vector<aura::Window*>& windows,
140 for (aura::Window::Windows::const_iterator iter = windows.begin();
141 iter != windows.end(); ++iter) {
149 // Attached panel windows are grouped into a single overview item per
198 // Find the minimum number of windows per row that will fit all of the
199 // windows on screen.
228 // If we have less than |kMinCardsMajor| windows, adjust the column_ value to
339 // If there are still windows in this selector entry then the overview is
134 WindowGrid(aura::Window* root_window, const std::vector<aura::Window*>& windows, WindowSelector* window_selector) argument
H A Dwindow_selector.cc216 WindowSelector::WindowSelector(const WindowList& windows, argument
239 // Observed switchable containers for newly created windows on all root
240 // windows.
247 scoped_ptr<WindowGrid> grid(new WindowGrid(*iter, windows, this));
255 // we don't want to cause any window updates until all windows in overview
292 const aura::WindowTracker::Windows hidden_windows(hidden_windows_.windows());
337 // Clearing the window list resets the ignored_by_shelf flag on the windows.
453 const std::vector<WindowSelectorItem*> windows = (*grid)->window_list(); local
456 windows.begin(), windows
[all...]
H A Dwindow_selector_unittest.cc278 // Tests entering overview mode with two windows and selecting one by clicking.
295 // In overview mode the windows should no longer overlap and the text filter
387 // Tests entering overview mode with two windows and selecting one.
577 // Tests that non-activatable windows are hidden when entering overview mode.
600 // Tests that windows with modal child windows are transformed with the modal
627 // Given that their relative positions are preserved, the windows should still
637 // Tests that windows remain on the display they are currently on in overview
701 // These windows will be deleted when the test exits and the Shell instance
845 ScopedVector<aura::Window> windows; local
890 ScopedVector<aura::Window> windows; local
[all...]
/external/chromium_org/ash/wm/workspace/
H A Dmulti_window_resize_controller.cc161 // WorkspaceEventHandler only sees mouse movements over the windows, not all
162 // windows or over the desktop.
166 ResizeWindows windows(DetermineWindows(window, component, point_in_window));
168 if (windows_.Equals(windows))
169 return; // Over the same windows.
173 if (!windows.is_valid())
176 windows_ = windows;
282 const Window::Windows& windows(parent->children());
283 for (Window::Windows::const_reverse_iterator i = windows.rbegin();
284 i != windows
422 std::vector<aura::Window*> windows; local
[all...]
H A Dworkspace_window_resizer_unittest.cc124 // Returns a string identifying the z-order of each of the known child windows
125 // of |parent|. The returned string constains the id of the known windows and
126 // is ordered from topmost to bottomost windows.
129 const aura::Window::Windows& windows = parent->children(); local
130 for (aura::Window::Windows::const_reverse_iterator i = windows.rbegin();
131 i != windows.rend(); ++i) {
212 // windows.
217 std::vector<aura::Window*> windows; local
218 windows.push_back(window2_.get());
221 aura::client::WINDOW_MOVE_SOURCE_MOUSE, windows));
251 std::vector<aura::Window*> windows; local
288 std::vector<aura::Window*> windows; local
329 std::vector<aura::Window*> windows; local
360 std::vector<aura::Window*> windows; local
394 std::vector<aura::Window*> windows; local
443 std::vector<aura::Window*> windows; local
484 std::vector<aura::Window*> windows; local
522 std::vector<aura::Window*> windows; local
763 std::vector<aura::Window*> windows; local
777 std::vector<aura::Window*> windows; local
1526 std::vector<aura::Window*> windows; local
1558 std::vector<aura::Window*> windows; local
1587 std::vector<aura::Window*> windows; local
1623 std::vector<aura::Window*> windows; local
1650 std::vector<aura::Window*> windows; local
1677 std::vector<aura::Window*> windows; local
1710 std::vector<aura::Window*> windows; local
1737 std::vector<aura::Window*> windows; local
[all...]
/external/chromium_org/athena/content/
H A Dapp_activity_unittest.cc169 aura::Window::Windows windows = activity->GetWindow()->parent()->children(); local
170 for (size_t i = 0; i < windows.size(); i++) {
171 if (windows[i] == window)
/external/chromium_org/athena/wm/
H A Dsplit_view_controller.cc183 const aura::Window::Windows& windows = window_list_provider_->GetWindowList(); local
184 aura::Window::Windows::const_reverse_iterator iter = windows.rbegin();
192 if (!left && iter != windows.rend()) {
195 if (left == right && iter != windows.rend()) {
201 if (!right && iter != windows.rend()) {
204 if (right == left && iter != windows.rend()) {
509 const aura::Window::Windows& windows = window_list_provider_->GetWindowList(); local
510 CHECK(windows.size() >= 2);
511 aura::Window::Windows::const_reverse_iterator iter = windows.rbegin();
H A Dsplit_view_controller_unittest.cc48 // Returns whether only the split view windows are visible.
78 // Tests that when split mode is activated, the windows on the left and right
82 ScopedVector<aura::Window> windows; local
86 windows.push_back(window.release());
87 windows[i]->Hide();
90 windows[kNumWindows - 1]->Show();
91 wm::ActivateWindow(windows[kNumWindows - 1]);
98 // The last two windows should be on the left and right, respectively.
99 EXPECT_EQ(windows[kNumWindows - 1], controller->left_window());
100 EXPECT_EQ(windows[kNumWindow
166 ScopedVector<aura::Window> windows; local
[all...]
H A Dwindow_manager_impl.cc70 // Resize all the existing windows.
186 // Relayout so that windows are maximzied.
201 const aura::Window::Windows windows = local
203 if (!windows.empty()) {
204 aura::Window* window = windows.back();
336 const aura::Window::Windows& windows = window_list_provider_->GetWindowList(); local
338 std::find(windows.rbegin(), windows.rend(), window);
339 CHECK(iter != windows.rend());
342 if (iter != windows
[all...]
H A Dwindow_manager_unittest.cc131 // correct windows on left and right splits.
243 // correct windows on left and right splits.
263 aura::Window::Windows windows = local
265 ASSERT_EQ(4u, windows.size());
266 EXPECT_EQ(second.get(), windows[3]);
267 EXPECT_EQ(fourth.get(), windows[2]);
276 windows = wm_api.GetWindowListProvider()->GetWindowList();
277 ASSERT_EQ(4u, windows.size());
278 EXPECT_EQ(third.get(), windows[3]);
279 EXPECT_EQ(second.get(), windows[
[all...]
H A Dwindow_overview_mode.cc49 // |split| is set if this window is one of the two split windows in split-view
218 // Prepare the desired transforms for all the windows, and set the initial
219 // state on the windows.
230 const aura::Window::Windows& windows = local
232 if (windows.empty())
234 std::for_each(windows.begin(),
235 windows.end(),
241 // Computes the transforms for all windows in both the topmost and bottom-most
243 // the windows.
247 const aura::Window::Windows& windows local
300 const aura::Window::Windows& windows = local
358 const aura::Window::Windows& windows = local
720 const aura::Window::Windows& windows = variable
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DForeignSessionHelper.java16 * This class exposes to Java information about sessions, windows, and tabs on the user's synced
54 public final List<ForeignSessionWindow> windows = new ArrayList<ForeignSessionWindow>(); field in class:ForeignSessionHelper.ForeignSession
65 * Represents synced foreign window. Note that desktop Chrome can have multiple windows in a
109 session.windows.add(window);
/external/chromium_org/chrome/browser/apps/app_shim/
H A Dextension_app_shim_handler_mac.cc54 AppWindowList windows = local
56 for (AppWindowList::const_reverse_iterator it = windows.rbegin();
57 it != windows.rend();
66 bool FocusWindows(const AppWindowList& windows) { argument
67 if (windows.empty())
71 for (AppWindowList::const_iterator it = windows.begin(); it != windows.end();
77 // don't have windows, so we have to do it ourselves.
442 const AppWindowList windows = local
444 bool windows_focused = FocusWindows(windows);
474 const AppWindowList windows = delegate_->GetWindows(profile, app_id); local
[all...]

Completed in 394 milliseconds

1234