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

Side by Side Diff: chrome/browser/ui/webui/options2/chromeos/set_wallpaper_options_handler2.cc

Issue 10391158: Moves methods for finding browsers to browser_finder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include fixs Created 8 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/ui/webui/options2/chromeos/set_wallpaper_options_handle r2.h" 5 #include "chrome/browser/ui/webui/options2/chromeos/set_wallpaper_options_handle r2.h"
6 6
7 #include "ash/desktop_background/desktop_background_controller.h" 7 #include "ash/desktop_background/desktop_background_controller.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/string_number_conversions.h" 13 #include "base/string_number_conversions.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/values.h" 15 #include "base/values.h"
16 #include "chrome/browser/chromeos/login/user_manager.h" 16 #include "chrome/browser/chromeos/login/user_manager.h"
17 #include "chrome/browser/profiles/profile.h" 17 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/ui/browser_list.h" 18 #include "chrome/browser/ui/browser_finder.h"
19 #include "chrome/browser/ui/browser_window.h" 19 #include "chrome/browser/ui/browser_window.h"
20 #include "chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2. h" 20 #include "chrome/browser/ui/webui/options2/chromeos/wallpaper_thumbnail_source2. h"
21 #include "chrome/browser/ui/webui/web_ui_util.h" 21 #include "chrome/browser/ui/webui/web_ui_util.h"
22 #include "chrome/common/chrome_paths.h" 22 #include "chrome/common/chrome_paths.h"
23 #include "content/public/browser/web_ui.h" 23 #include "content/public/browser/web_ui.h"
24 #include "grit/generated_resources.h" 24 #include "grit/generated_resources.h"
25 #include "ui/base/l10n/l10n_util.h" 25 #include "ui/base/l10n/l10n_util.h"
26 #include "ui/base/resource/resource_bundle.h" 26 #include "ui/base/resource/resource_bundle.h"
27 #include "ui/views/widget/widget.h" 27 #include "ui/views/widget/widget.h"
28 28
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 ash::Shell::GetInstance()->desktop_background_controller()-> 230 ash::Shell::GetInstance()->desktop_background_controller()->
231 SetDefaultWallpaper(index); 231 SetDefaultWallpaper(index);
232 base::StringValue image_url(GetDefaultWallpaperThumbnailURL(index)); 232 base::StringValue image_url(GetDefaultWallpaperThumbnailURL(index));
233 base::FundamentalValue is_random(true); 233 base::FundamentalValue is_random(true);
234 web_ui()->CallJavascriptFunction("SetWallpaperOptions.setSelectedImage", 234 web_ui()->CallJavascriptFunction("SetWallpaperOptions.setSelectedImage",
235 image_url, is_random); 235 image_url, is_random);
236 } 236 }
237 237
238 gfx::NativeWindow SetWallpaperOptionsHandler::GetBrowserWindow() const { 238 gfx::NativeWindow SetWallpaperOptionsHandler::GetBrowserWindow() const {
239 Browser* browser = 239 Browser* browser =
240 BrowserList::FindBrowserWithProfile(Profile::FromWebUI(web_ui())); 240 browser::FindBrowserWithProfile(Profile::FromWebUI(web_ui()));
241 if (!browser) 241 if (!browser)
242 return NULL; 242 return NULL;
243 return browser->window()->GetNativeHandle(); 243 return browser->window()->GetNativeHandle();
244 } 244 }
245 245
246 } // namespace options2 246 } // namespace options2
247 } // namespace chromeos 247 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698