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_UI_STARTUP_STARTUP_BROWSER_CREATOR_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UI_STARTUP_STARTUP_BROWSER_CREATOR_IMPL_H_ |
6 #define CHROME_BROWSER_UI_STARTUP_STARTUP_BROWSER_CREATOR_IMPL_H_ | 6 #define CHROME_BROWSER_UI_STARTUP_STARTUP_BROWSER_CREATOR_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 StartupBrowserCreator* browser_creator_; | 132 StartupBrowserCreator* browser_creator_; |
133 bool is_first_run_; | 133 bool is_first_run_; |
134 DISALLOW_COPY_AND_ASSIGN(StartupBrowserCreatorImpl); | 134 DISALLOW_COPY_AND_ASSIGN(StartupBrowserCreatorImpl); |
135 }; | 135 }; |
136 | 136 |
137 // Returns true if |profile| has exited uncleanly and has not been launched | 137 // Returns true if |profile| has exited uncleanly and has not been launched |
138 // after the unclean exit. | 138 // after the unclean exit. |
139 bool HasPendingUncleanExit(Profile* profile); | 139 bool HasPendingUncleanExit(Profile* profile); |
140 | 140 |
141 #endif // CHROME_BROWSER_UI_STARTUP_STARTUP_BROWSER_CREATOR_IMPL_H_ | 141 #endif // CHROME_BROWSER_UI_STARTUP_STARTUP_BROWSER_CREATOR_IMPL_H_ |
OLD | NEW |