Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_FIRST_RUN_H_ | 5 #ifndef CHROME_BROWSER_FIRST_RUN_H_ |
|
Paweł Hajdan Jr.
2010/07/29 22:46:50
nit: Header guards should be updated.
| |
| 6 #define CHROME_BROWSER_FIRST_RUN_H_ | 6 #define CHROME_BROWSER_FIRST_RUN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "chrome/browser/browser_process_impl.h" | 13 #include "chrome/browser/browser_process_impl.h" |
| 14 #include "chrome/browser/importer/importer.h" | 14 #include "chrome/browser/importer/importer.h" |
| 15 #include "chrome/common/result_codes.h" | 15 #include "chrome/common/result_codes.h" |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 289 // or closed the dialog. | 289 // or closed the dialog. |
| 290 bool OpenFirstRunDialog(Profile* profile, | 290 bool OpenFirstRunDialog(Profile* profile, |
| 291 bool homepage_defined, | 291 bool homepage_defined, |
| 292 int import_items, | 292 int import_items, |
| 293 int dont_import_items, | 293 int dont_import_items, |
| 294 bool search_engine_experiment, | 294 bool search_engine_experiment, |
| 295 bool randomize_search_engine_experiment, | 295 bool randomize_search_engine_experiment, |
| 296 ProcessSingleton* process_singleton); | 296 ProcessSingleton* process_singleton); |
| 297 | 297 |
| 298 #endif // CHROME_BROWSER_FIRST_RUN_H_ | 298 #endif // CHROME_BROWSER_FIRST_RUN_H_ |
| OLD | NEW |