| 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_VIEWS_IMPORTING_PROGRESS_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/importer/importer.h" | 8 #include "chrome/browser/importer/importer.h" |
| 9 #include "chrome/browser/importer/importer_data_types.h" | 9 #include "chrome/common/importer_data_types.h" |
| 10 #include "views/view.h" | 10 #include "views/view.h" |
| 11 #include "views/window/dialog_delegate.h" | 11 #include "views/window/dialog_delegate.h" |
| 12 #include "views/window/window.h" | 12 #include "views/window/window.h" |
| 13 | 13 |
| 14 namespace views { | 14 namespace views { |
| 15 class CheckmarkThrobber; | 15 class CheckmarkThrobber; |
| 16 class Label; | 16 class Label; |
| 17 } | 17 } |
| 18 | 18 |
| 19 class ImportingProgressView : public views::View, | 19 class ImportingProgressView : public views::View, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 // True if the import operation is in progress. | 85 // True if the import operation is in progress. |
| 86 bool importing_; | 86 bool importing_; |
| 87 | 87 |
| 88 // Are we importing a bookmarks.html file? | 88 // Are we importing a bookmarks.html file? |
| 89 bool bookmarks_import_; | 89 bool bookmarks_import_; |
| 90 | 90 |
| 91 DISALLOW_EVIL_CONSTRUCTORS(ImportingProgressView); | 91 DISALLOW_EVIL_CONSTRUCTORS(ImportingProgressView); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 #endif // CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_ | 94 #endif // CHROME_BROWSER_VIEWS_IMPORTING_PROGRESS_VIEW_H_ |
| OLD | NEW |