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

Side by Side Diff: chrome/browser/chromeos/extensions/wallpaper_private_api.cc

Issue 2115663002: Folds methods in WmShellCommon to WmShell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « ash/wm/window_cycle_list.cc ('k') | chrome/browser/ui/ash/chrome_shell_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/extensions/wallpaper_private_api.h" 5 #include "chrome/browser/chromeos/extensions/wallpaper_private_api.h"
6 6
7 #include <map> 7 #include <map>
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 #include <vector> 12 #include <vector>
13 13
14 #include "ash/aura/wm_window_aura.h" 14 #include "ash/aura/wm_window_aura.h"
15 #include "ash/common/wm/mru_window_tracker.h" 15 #include "ash/common/wm/mru_window_tracker.h"
16 #include "ash/common/wm/window_state.h" 16 #include "ash/common/wm/window_state.h"
17 #include "ash/common/wm_shell.h"
17 #include "ash/desktop_background/desktop_background_controller.h" 18 #include "ash/desktop_background/desktop_background_controller.h"
18 #include "ash/shell.h" 19 #include "ash/shell.h"
19 #include "ash/wm/window_state_aura.h" 20 #include "ash/wm/window_state_aura.h"
20 #include "ash/wm/window_util.h" 21 #include "ash/wm/window_util.h"
21 #include "base/command_line.h" 22 #include "base/command_line.h"
22 #include "base/files/file_enumerator.h" 23 #include "base/files/file_enumerator.h"
23 #include "base/files/file_util.h" 24 #include "base/files/file_util.h"
24 #include "base/macros.h" 25 #include "base/macros.h"
25 #include "base/memory/ptr_util.h" 26 #include "base/memory/ptr_util.h"
26 #include "base/memory/ref_counted_memory.h" 27 #include "base/memory/ref_counted_memory.h"
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 210
210 void WindowStateManager::BuildWindowListAndMinimizeInactiveForUser( 211 void WindowStateManager::BuildWindowListAndMinimizeInactiveForUser(
211 const std::string& user_id_hash, aura::Window* active_window) { 212 const std::string& user_id_hash, aura::Window* active_window) {
212 if (user_id_hash_window_list_map_.find(user_id_hash) == 213 if (user_id_hash_window_list_map_.find(user_id_hash) ==
213 user_id_hash_window_list_map_.end()) { 214 user_id_hash_window_list_map_.end()) {
214 user_id_hash_window_list_map_[user_id_hash] = std::set<aura::Window*>(); 215 user_id_hash_window_list_map_[user_id_hash] = std::set<aura::Window*>();
215 } 216 }
216 std::set<aura::Window*>* results = 217 std::set<aura::Window*>* results =
217 &user_id_hash_window_list_map_[user_id_hash]; 218 &user_id_hash_window_list_map_[user_id_hash];
218 219
219 std::vector<aura::Window*> windows = 220 std::vector<aura::Window*> windows = ash::WmWindowAura::ToAuraWindows(
220 ash::WmWindowAura::ToAuraWindows(ash::Shell::GetInstance() 221 ash::WmShell::Get()->mru_window_tracker()->BuildWindowListIgnoreModal());
221 ->mru_window_tracker()
222 ->BuildWindowListIgnoreModal());
223 222
224 for (std::vector<aura::Window*>::iterator iter = windows.begin(); 223 for (std::vector<aura::Window*>::iterator iter = windows.begin();
225 iter != windows.end(); ++iter) { 224 iter != windows.end(); ++iter) {
226 // Ignore active window and minimized windows. 225 // Ignore active window and minimized windows.
227 if (*iter == active_window || ash::wm::GetWindowState(*iter)->IsMinimized()) 226 if (*iter == active_window || ash::wm::GetWindowState(*iter)->IsMinimized())
228 continue; 227 continue;
229 228
230 if (!(*iter)->HasObserver(this)) 229 if (!(*iter)->HasObserver(this))
231 (*iter)->AddObserver(this); 230 (*iter)->AddObserver(this);
232 231
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 bool WallpaperPrivateRecordWallpaperUMAFunction::RunSync() { 975 bool WallpaperPrivateRecordWallpaperUMAFunction::RunSync() {
977 std::unique_ptr<record_wallpaper_uma::Params> params( 976 std::unique_ptr<record_wallpaper_uma::Params> params(
978 record_wallpaper_uma::Params::Create(*args_)); 977 record_wallpaper_uma::Params::Create(*args_));
979 EXTENSION_FUNCTION_VALIDATE(params); 978 EXTENSION_FUNCTION_VALIDATE(params);
980 979
981 user_manager::User::WallpaperType source = getWallpaperType(params->source); 980 user_manager::User::WallpaperType source = getWallpaperType(params->source);
982 UMA_HISTOGRAM_ENUMERATION("Ash.Wallpaper.Source", source, 981 UMA_HISTOGRAM_ENUMERATION("Ash.Wallpaper.Source", source,
983 user_manager::User::WALLPAPER_TYPE_COUNT); 982 user_manager::User::WALLPAPER_TYPE_COUNT);
984 return true; 983 return true;
985 } 984 }
OLDNEW
« no previous file with comments | « ash/wm/window_cycle_list.cc ('k') | chrome/browser/ui/ash/chrome_shell_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698