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

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

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
None
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 <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
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

OLDNEW

Powered by Google App Engine
This is Rietveld 408576698