| OLD | NEW |
| 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 <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "ash/ash_switches.h" | 9 #include "ash/ash_switches.h" |
| 10 #include "ash/desktop_background/desktop_background_controller.h" | 10 #include "ash/desktop_background/desktop_background_controller.h" |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 const std::string& user_id_hash, aura::Window* active_window) { | 164 const std::string& user_id_hash, aura::Window* active_window) { |
| 165 if (user_id_hash_window_list_map_.find(user_id_hash) == | 165 if (user_id_hash_window_list_map_.find(user_id_hash) == |
| 166 user_id_hash_window_list_map_.end()) { | 166 user_id_hash_window_list_map_.end()) { |
| 167 user_id_hash_window_list_map_[user_id_hash] = std::set<aura::Window*>(); | 167 user_id_hash_window_list_map_[user_id_hash] = std::set<aura::Window*>(); |
| 168 } | 168 } |
| 169 std::set<aura::Window*>* results = | 169 std::set<aura::Window*>* results = |
| 170 &user_id_hash_window_list_map_[user_id_hash]; | 170 &user_id_hash_window_list_map_[user_id_hash]; |
| 171 | 171 |
| 172 std::vector<aura::Window*> windows = | 172 std::vector<aura::Window*> windows = |
| 173 ash::MruWindowTracker::BuildWindowList(false); | 173 ash::MruWindowTracker::BuildWindowList(false); |
error: old chunk mismatch |
None
| OLD | NEW |