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

Side by Side Diff: chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h

Issue 18050009: Use a direct include of time headers in chrome/browser/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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) 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_
6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ 6 #define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback_forward.h" 11 #include "base/callback_forward.h"
12 #include "base/time.h" 12 #include "base/time/time.h"
13 #include "chrome/browser/chromeos/policy/app_pack_updater.h" 13 #include "chrome/browser/chromeos/policy/app_pack_updater.h"
14 #include "chrome/browser/chromeos/settings/device_settings_service.h" 14 #include "chrome/browser/chromeos/settings/device_settings_service.h"
15 15
16 namespace base { 16 namespace base {
17 template <typename T> struct DefaultLazyInstanceTraits; 17 template <typename T> struct DefaultLazyInstanceTraits;
18 } 18 }
19 19
20 namespace chromeos { 20 namespace chromeos {
21 21
22 // This class centralizes all our code to get KioskMode settings; since 22 // This class centralizes all our code to get KioskMode settings; since
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 base::TimeDelta screensaver_timeout_; 88 base::TimeDelta screensaver_timeout_;
89 base::TimeDelta idle_logout_timeout_; 89 base::TimeDelta idle_logout_timeout_;
90 base::TimeDelta idle_logout_warning_duration_; 90 base::TimeDelta idle_logout_warning_duration_;
91 91
92 DISALLOW_COPY_AND_ASSIGN(KioskModeSettings); 92 DISALLOW_COPY_AND_ASSIGN(KioskModeSettings);
93 }; 93 };
94 94
95 } // namespace chromeos 95 } // namespace chromeos
96 96
97 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_ 97 #endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SETTINGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698