blob: bef27b45357b51e87d0368175233705a4a3249a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/background/ash_user_wallpaper_delegate.h"
#include "ash/shell.h"
#include "ash/desktop_background/desktop_background_controller.h"
#include "ash/desktop_background/desktop_background_resources.h"
#include "base/logging.h"
#include "chrome/browser/chromeos/login/user_manager.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/common/chrome_notification_types.h"
#include "content/public/browser/notification_service.h"
namespace chromeos {
namespace {
class UserWallpaperDelegate: public ash::UserWallpaperDelegate {
public:
UserWallpaperDelegate() {
}
virtual ~UserWallpaperDelegate() {
}
virtual void SetLoggedInUserWallpaper() OVERRIDE {
chromeos::UserManager::Get()->SetLoggedInUserWallpaper();
}
virtual void OpenSetWallpaperPage() OVERRIDE {
Browser* browser = browser::FindOrCreateTabbedBrowser(
ProfileManager::GetDefaultProfileOrOffTheRecord());
browser->ShowOptionsTab("setWallpaper");
}
virtual bool CanOpenSetWallpaperPage() OVERRIDE {
return !chromeos::UserManager::Get()->IsLoggedInAsGuest();
}
private:
DISALLOW_COPY_AND_ASSIGN(UserWallpaperDelegate);
};
} // namespace
ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() {
return new chromeos::UserWallpaperDelegate();
}
} // namespace chromeos
|