| OLD | NEW |
| 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_BOOT_TIMES_RECORDER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_BOOT_TIMES_RECORDER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_BOOT_TIMES_RECORDER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_BOOT_TIMES_RECORDER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/atomic_sequence_num.h" | 11 #include "base/atomic_sequence_num.h" |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
| 14 #include "base/task/cancelable_task_tracker.h" | 15 #include "base/task/cancelable_task_tracker.h" |
| 15 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 16 #include "chromeos/login_event_recorder.h" | 17 #include "chromeos/login_event_recorder.h" |
| 17 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
| 18 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 19 #include "content/public/browser/render_widget_host.h" | 20 #include "content/public/browser/render_widget_host.h" |
| 20 | 21 |
| 21 class PrefService; | 22 class PrefService; |
| 22 | 23 |
| 23 namespace chromeos { | 24 namespace chromeos { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 bool login_done_; | 162 bool login_done_; |
| 162 | 163 |
| 163 bool restart_requested_; | 164 bool restart_requested_; |
| 164 | 165 |
| 165 DISALLOW_COPY_AND_ASSIGN(BootTimesRecorder); | 166 DISALLOW_COPY_AND_ASSIGN(BootTimesRecorder); |
| 166 }; | 167 }; |
| 167 | 168 |
| 168 } // namespace chromeos | 169 } // namespace chromeos |
| 169 | 170 |
| 170 #endif // CHROME_BROWSER_CHROMEOS_BOOT_TIMES_RECORDER_H_ | 171 #endif // CHROME_BROWSER_CHROMEOS_BOOT_TIMES_RECORDER_H_ |
| OLD | NEW |