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

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

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <signal.h> 7 #include <signal.h>
8 #include <sys/types.h> 8 #include <sys/types.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 30 matching lines...) Expand all
41 #include "chrome/browser/ui/options/options_util.h" 41 #include "chrome/browser/ui/options/options_util.h"
42 #include "chrome/common/pref_names.h" 42 #include "chrome/common/pref_names.h"
43 #include "content/public/browser/notification_types.h" 43 #include "content/public/browser/notification_types.h"
44 #include "ui/base/l10n/l10n_util.h" 44 #include "ui/base/l10n/l10n_util.h"
45 #include "views/accelerator.h" 45 #include "views/accelerator.h"
46 46
47 #if defined(USE_LINUX_BREAKPAD) 47 #if defined(USE_LINUX_BREAKPAD)
48 #include "chrome/app/breakpad_linux.h" 48 #include "chrome/app/breakpad_linux.h"
49 #endif 49 #endif
50 50
51 using content::BrowserThread;
52
51 namespace { 53 namespace {
52 54
53 // A boolean pref of the EULA accepted flag. 55 // A boolean pref of the EULA accepted flag.
54 const char kEulaAccepted[] = "EulaAccepted"; 56 const char kEulaAccepted[] = "EulaAccepted";
55 57
56 // A string pref with initial locale set in VPD or manifest. 58 // A string pref with initial locale set in VPD or manifest.
57 const char kInitialLocale[] = "intl.initial_locale"; 59 const char kInitialLocale[] = "intl.initial_locale";
58 60
59 // A boolean pref of the OOBE complete flag (first OOBE part before login). 61 // A boolean pref of the OOBE complete flag (first OOBE part before login).
60 const char kOobeComplete[] = "OobeComplete"; 62 const char kOobeComplete[] = "OobeComplete";
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 693
692 bool WizardController::usage_statistics_reporting() const { 694 bool WizardController::usage_statistics_reporting() const {
693 return usage_statistics_reporting_; 695 return usage_statistics_reporting_;
694 } 696 }
695 697
696 void WizardController::SetZeroDelays() { 698 void WizardController::SetZeroDelays() {
697 kShowDelayMs = 0; 699 kShowDelayMs = 0;
698 } 700 }
699 701
700 } // namespace chromeos 702 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/user_manager.cc ('k') | chrome/browser/chromeos/media/media_player.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698