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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROMEOS_LOCALE_CHANGE_GUARD_H_
6 #define CHROME_BROWSER_CHROMEOS_LOCALE_CHANGE_GUARD_H_
10 #include "ash/system/locale/locale_observer.h"
11 #include "base/compiler_specific.h"
12 #include "base/lazy_instance.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h"
15 #include "base/strings/string16.h"
16 #include "content/public/browser/notification_observer.h"
17 #include "content/public/browser/notification_registrar.h"
18 #include "content/public/browser/notification_types.h"
28 // Performs check whether locale has been changed automatically recently
29 // (based on synchronized user preference). If so: shows notification that
30 // allows user to revert change.
31 class LocaleChangeGuard
: public content::NotificationObserver
,
32 public ash::LocaleObserver::Delegate
,
33 public base::SupportsWeakPtr
<LocaleChangeGuard
> {
35 explicit LocaleChangeGuard(Profile
* profile
);
36 virtual ~LocaleChangeGuard();
38 // ash::LocaleChangeDelegate implementation.
39 virtual void AcceptLocaleChange() OVERRIDE
;
40 virtual void RevertLocaleChange() OVERRIDE
;
42 // Called just before changing locale.
43 void PrepareChangingLocale(
44 const std::string
& from_locale
, const std::string
& to_locale
);
46 // Called after login.
52 void RevertLocaleChangeCallback(const base::ListValue
* list
);
55 // content::NotificationObserver implementation.
56 virtual void Observe(int type
,
57 const content::NotificationSource
& source
,
58 const content::NotificationDetails
& details
) OVERRIDE
;
60 std::string from_locale_
;
61 std::string to_locale_
;
64 bool session_started_
;
65 bool main_frame_loaded_
;
66 content::NotificationRegistrar registrar_
;
68 // We want to show locale change notification in previous language however
69 // we cannot directly load strings for non-current locale. So we cache
70 // messages before locale change.
72 string16 message_text_
;
73 string16 revert_link_text_
;
76 } // namespace chromeos
78 #endif // CHROME_BROWSER_CHROMEOS_LOCALE_CHANGE_GUARD_H_