| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_FIRST_RUN_VIEW_BASE_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_FIRST_RUN_VIEW_BASE_H__ |
| 6 #define CHROME_BROWSER_VIEWS_FIRST_RUN_VIEW_BASE_H__ | 6 #define CHROME_BROWSER_VIEWS_FIRST_RUN_VIEW_BASE_H__ |
| 7 #include "chrome/browser/importer.h" | 7 |
| 8 #include "chrome/browser/importer/importer.h" |
| 8 #include "chrome/views/dialog_delegate.h" | 9 #include "chrome/views/dialog_delegate.h" |
| 9 #include "chrome/views/view.h" | 10 #include "chrome/views/view.h" |
| 10 | 11 |
| 11 namespace ChromeViews { | 12 namespace ChromeViews { |
| 12 | 13 |
| 13 class Window; | 14 class Window; |
| 14 class ImageView; | 15 class ImageView; |
| 15 class Separator; | 16 class Separator; |
| 16 class Throbber; | 17 class Throbber; |
| 17 | 18 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 ChromeViews::ImageView* background_image_; | 79 ChromeViews::ImageView* background_image_; |
| 79 ChromeViews::Separator* separator_1_; | 80 ChromeViews::Separator* separator_1_; |
| 80 ChromeViews::Separator* separator_2_; | 81 ChromeViews::Separator* separator_2_; |
| 81 int preferred_width_; | 82 int preferred_width_; |
| 82 | 83 |
| 83 DISALLOW_EVIL_CONSTRUCTORS(FirstRunViewBase); | 84 DISALLOW_EVIL_CONSTRUCTORS(FirstRunViewBase); |
| 84 }; | 85 }; |
| 85 | 86 |
| 86 #endif // CHROME_BROWSER_VIEWS_FIRST_RUN_VIEW_BASE_H__ | 87 #endif // CHROME_BROWSER_VIEWS_FIRST_RUN_VIEW_BASE_H__ |
| 87 | 88 |
| OLD | NEW |