Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(524)

Unified Diff: ash/wm/window_util.cc

Issue 9817025: Ash: Use right edge of screen to scroll maximized windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/wm/window_util.h ('k') | chrome/browser/ui/views/frame/browser_frame_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_util.cc
diff --git a/ash/wm/window_util.cc b/ash/wm/window_util.cc
index 3695f86923808dc136be917c77147c138de4c36a..fbba9ad7cebfa6242d67cc35dd0a142e49720b9f 100644
--- a/ash/wm/window_util.cc
+++ b/ash/wm/window_util.cc
@@ -83,16 +83,6 @@ void RestoreWindow(aura::Window* window) {
window->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_NORMAL);
}
-bool HasFullscreenWindow(const WindowSet& windows) {
- for (WindowSet::const_iterator i = windows.begin(); i != windows.end(); ++i) {
- if ((*i)->GetProperty(aura::client::kShowStateKey)
- == ui::SHOW_STATE_FULLSCREEN) {
- return true;
- }
- }
- return false;
-}
-
void SetOpenWindowSplit(aura::Window* window, bool value) {
window->SetProperty(kOpenWindowSplitKey, value);
}
« no previous file with comments | « ash/wm/window_util.h ('k') | chrome/browser/ui/views/frame/browser_frame_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698