| 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_LOADER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_BOOT_TIMES_LOADER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_BOOT_TIMES_LOADER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_BOOT_TIMES_LOADER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 Stats chrome_main_stats_; | 173 Stats chrome_main_stats_; |
| 174 scoped_refptr<Backend> backend_; | 174 scoped_refptr<Backend> backend_; |
| 175 | 175 |
| 176 // Used to track notifications for login. | 176 // Used to track notifications for login. |
| 177 content::NotificationRegistrar registrar_; | 177 content::NotificationRegistrar registrar_; |
| 178 base::AtomicSequenceNumber num_tabs_; | 178 base::AtomicSequenceNumber num_tabs_; |
| 179 bool have_registered_; | 179 bool have_registered_; |
| 180 | 180 |
| 181 std::vector<TimeMarker> login_time_markers_; | 181 std::vector<TimeMarker> login_time_markers_; |
| 182 std::vector<TimeMarker> logout_time_markers_; | 182 std::vector<TimeMarker> logout_time_markers_; |
| 183 std::set<RenderWidgetHost*> render_widget_hosts_loading_; | 183 std::set<content::RenderWidgetHost*> render_widget_hosts_loading_; |
| 184 | 184 |
| 185 DISALLOW_COPY_AND_ASSIGN(BootTimesLoader); | 185 DISALLOW_COPY_AND_ASSIGN(BootTimesLoader); |
| 186 }; | 186 }; |
| 187 | 187 |
| 188 } // namespace chromeos | 188 } // namespace chromeos |
| 189 | 189 |
| 190 #endif // CHROME_BROWSER_CHROMEOS_BOOT_TIMES_LOADER_H_ | 190 #endif // CHROME_BROWSER_CHROMEOS_BOOT_TIMES_LOADER_H_ |
| OLD | NEW |