| 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_UI_VIEWS_IMPORTER_IMPORT_PROGRESS_DIALOG_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_IMPORTER_IMPORT_PROGRESS_DIALOG_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_IMPORTER_IMPORT_PROGRESS_DIALOG_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_IMPORTER_IMPORT_PROGRESS_DIALOG_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chrome/browser/importer/importer_data_types.h" | 13 #include "chrome/browser/importer/importer_data_types.h" |
| 14 #include "chrome/browser/importer/importer_progress_observer.h" | 14 #include "chrome/browser/importer/importer_progress_observer.h" |
| 15 #include "ui/views/window/dialog_delegate.h" |
| 15 #include "views/view.h" | 16 #include "views/view.h" |
| 16 #include "views/window/dialog_delegate.h" | |
| 17 | 17 |
| 18 class ImporterHost; | 18 class ImporterHost; |
| 19 class ImporterObserver; | 19 class ImporterObserver; |
| 20 | 20 |
| 21 namespace views { | 21 namespace views { |
| 22 class CheckmarkThrobber; | 22 class CheckmarkThrobber; |
| 23 class Label; | 23 class Label; |
| 24 } | 24 } |
| 25 | 25 |
| 26 class ImportProgressDialogView : public views::DialogDelegateView, | 26 class ImportProgressDialogView : public views::DialogDelegateView, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // True if the import operation is in progress. | 90 // True if the import operation is in progress. |
| 91 bool importing_; | 91 bool importing_; |
| 92 | 92 |
| 93 // Are we importing a bookmarks.html file? | 93 // Are we importing a bookmarks.html file? |
| 94 bool bookmarks_import_; | 94 bool bookmarks_import_; |
| 95 | 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(ImportProgressDialogView); | 96 DISALLOW_COPY_AND_ASSIGN(ImportProgressDialogView); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 #endif // CHROME_BROWSER_UI_VIEWS_IMPORTER_IMPORT_PROGRESS_DIALOG_VIEW_H_ | 99 #endif // CHROME_BROWSER_UI_VIEWS_IMPORTER_IMPORT_PROGRESS_DIALOG_VIEW_H_ |
| OLD | NEW |