blob: 6981512c32b8953860dfae902d5dcffe11afa54b (
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) 2011 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.
#ifndef CHROME_BROWSER_CHROMEOS_LOCALE_CHANGE_GUARD_H_
#define CHROME_BROWSER_CHROMEOS_LOCALE_CHANGE_GUARD_H_
#pragma once
#include <string>
#include "base/lazy_instance.h"
#include "base/scoped_ptr.h"
#include "chrome/browser/chromeos/notifications/system_notification.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
#include "content/common/notification_type.h"
class ListValue;
class NotificationDetails;
class NotificationSource;
class Profile;
namespace chromeos {
// Performs check whether locale has been changed automatically recently
// (based on synchronized user preference). If so: shows notification that
// allows user to revert change.
class LocaleChangeGuard : public NotificationObserver {
public:
explicit LocaleChangeGuard(Profile* profile);
private:
class Delegate;
void RevertLocaleChange(const ListValue* list);
void AcceptLocaleChange();
void Check();
// NotificationObserver implementation.
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
std::string from_locale_;
std::string to_locale_;
Profile* profile_;
scoped_ptr<chromeos::SystemNotification> note_;
bool reverted_;
NotificationRegistrar registrar_;
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_LOCALE_CHANGE_GUARD_H_
|