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_IMPORTER_VIEW_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_IMPORTER_VIEW_H__ |
6 #define CHROME_BROWSER_VIEWS_IMPORTER_VIEW_H__ | 6 #define CHROME_BROWSER_VIEWS_IMPORTER_VIEW_H__ |
7 | 7 |
8 #include "chrome/browser/importer.h" | 8 #include "chrome/browser/importer/importer.h" |
9 #include "chrome/views/combo_box.h" | 9 #include "chrome/views/combo_box.h" |
10 #include "chrome/views/dialog_delegate.h" | 10 #include "chrome/views/dialog_delegate.h" |
11 #include "chrome/views/native_button.h" | 11 #include "chrome/views/native_button.h" |
12 #include "chrome/views/view.h" | 12 #include "chrome/views/view.h" |
13 | 13 |
14 namespace ChromeViews { | 14 namespace ChromeViews { |
15 | 15 |
16 class CheckBox; | 16 class CheckBox; |
17 class Label; | 17 class Label; |
18 class Window; | 18 class Window; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 scoped_refptr<ImporterHost> importer_host_; | 70 scoped_refptr<ImporterHost> importer_host_; |
71 | 71 |
72 Profile* profile_; | 72 Profile* profile_; |
73 | 73 |
74 DISALLOW_EVIL_CONSTRUCTORS(ImporterView); | 74 DISALLOW_EVIL_CONSTRUCTORS(ImporterView); |
75 }; | 75 }; |
76 | 76 |
77 #endif // CHROME_BROWSER_VIEWS_IMPORTER_VIEW_H__ | 77 #endif // CHROME_BROWSER_VIEWS_IMPORTER_VIEW_H__ |
78 | 78 |
OLD | NEW |