| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FIRST_RUN_H_ | 5 #ifndef CHROME_BROWSER_FIRST_RUN_FIRST_RUN_H_ |
| 6 #define CHROME_BROWSER_FIRST_RUN_FIRST_RUN_H_ | 6 #define CHROME_BROWSER_FIRST_RUN_FIRST_RUN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "chrome/browser/browser_process_impl.h" | 13 #include "chrome/browser/browser_process_impl.h" |
| 14 #include "chrome/browser/importer/importer_observer.h" | 14 #include "chrome/browser/importer/importer_observer.h" |
| 15 #include "chrome/common/result_codes.h" | 15 #include "content/common/result_codes.h" |
| 16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| 17 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
| 18 | 18 |
| 19 class CommandLine; | 19 class CommandLine; |
| 20 class FilePath; | 20 class FilePath; |
| 21 class Profile; | 21 class Profile; |
| 22 class ProcessSingleton; | 22 class ProcessSingleton; |
| 23 class ImporterHost; | 23 class ImporterHost; |
| 24 class ImporterList; | 24 class ImporterList; |
| 25 | 25 |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 virtual void ImportCompleted() OVERRIDE; | 317 virtual void ImportCompleted() OVERRIDE; |
| 318 virtual void ImportCanceled() OVERRIDE; | 318 virtual void ImportCanceled() OVERRIDE; |
| 319 | 319 |
| 320 bool loop_running_; | 320 bool loop_running_; |
| 321 int import_result_; | 321 int import_result_; |
| 322 | 322 |
| 323 DISALLOW_COPY_AND_ASSIGN(FirstRunImportObserver); | 323 DISALLOW_COPY_AND_ASSIGN(FirstRunImportObserver); |
| 324 }; | 324 }; |
| 325 | 325 |
| 326 #endif // CHROME_BROWSER_FIRST_RUN_FIRST_RUN_H_ | 326 #endif // CHROME_BROWSER_FIRST_RUN_FIRST_RUN_H_ |
| OLD | NEW |