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

Side by Side Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 5606002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/login/wizard_controller.h" 5 #include "chrome/browser/chromeos/login/wizard_controller.h"
6 6
7 #include <gdk/gdk.h> 7 #include <gdk/gdk.h>
8 #include <signal.h> 8 #include <signal.h>
9 #include <sys/types.h> 9 #include <sys/types.h>
10 10
(...skipping 25 matching lines...) Expand all
36 #include "chrome/browser/chromeos/login/login_utils.h" 36 #include "chrome/browser/chromeos/login/login_utils.h"
37 #include "chrome/browser/chromeos/login/network_screen.h" 37 #include "chrome/browser/chromeos/login/network_screen.h"
38 #include "chrome/browser/chromeos/login/registration_screen.h" 38 #include "chrome/browser/chromeos/login/registration_screen.h"
39 #include "chrome/browser/chromeos/login/rounded_rect_painter.h" 39 #include "chrome/browser/chromeos/login/rounded_rect_painter.h"
40 #include "chrome/browser/chromeos/login/update_screen.h" 40 #include "chrome/browser/chromeos/login/update_screen.h"
41 #include "chrome/browser/chromeos/login/user_image_screen.h" 41 #include "chrome/browser/chromeos/login/user_image_screen.h"
42 #include "chrome/browser/chromeos/login/user_manager.h" 42 #include "chrome/browser/chromeos/login/user_manager.h"
43 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h" 43 #include "chrome/browser/chromeos/login/wizard_accessibility_helper.h"
44 #include "chrome/browser/chromeos/wm_ipc.h" 44 #include "chrome/browser/chromeos/wm_ipc.h"
45 #include "chrome/browser/prefs/pref_service.h" 45 #include "chrome/browser/prefs/pref_service.h"
46 #include "chrome/browser/profile_manager.h" 46 #include "chrome/browser/profiles/profile_manager.h"
47 #include "chrome/common/chrome_switches.h" 47 #include "chrome/common/chrome_switches.h"
48 #include "chrome/common/notification_service.h" 48 #include "chrome/common/notification_service.h"
49 #include "chrome/common/pref_names.h" 49 #include "chrome/common/pref_names.h"
50 #include "cros/chromeos_wm_ipc_enums.h" 50 #include "cros/chromeos_wm_ipc_enums.h"
51 #include "unicode/timezone.h" 51 #include "unicode/timezone.h"
52 #include "views/accelerator.h" 52 #include "views/accelerator.h"
53 #include "views/painter.h" 53 #include "views/painter.h"
54 #include "views/view.h" 54 #include "views/view.h"
55 #include "views/widget/widget_gtk.h" 55 #include "views/widget/widget_gtk.h"
56 56
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 // user has changed to during OOBE. 1019 // user has changed to during OOBE.
1020 if (!timezone_name.empty()) { 1020 if (!timezone_name.empty()) {
1021 icu::TimeZone* timezone = icu::TimeZone::createTimeZone( 1021 icu::TimeZone* timezone = icu::TimeZone::createTimeZone(
1022 icu::UnicodeString::fromUTF8(timezone_name)); 1022 icu::UnicodeString::fromUTF8(timezone_name));
1023 chromeos::CrosLibrary::Get()->GetSystemLibrary()->SetTimezone(timezone); 1023 chromeos::CrosLibrary::Get()->GetSystemLibrary()->SetTimezone(timezone);
1024 } 1024 }
1025 } 1025 }
1026 } 1026 }
1027 1027
1028 } // namespace browser 1028 } // namespace browser
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/wizard_accessibility_helper.cc ('k') | chrome/browser/chromeos/network_message_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698