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_DONWLOAD_TAB_VIEW_H__ | 5 #ifndef CHROME_BROWSER_VIEWS_DONWLOAD_TAB_VIEW_H__ |
6 #define CHROME_BROWSER_DONWLOAD_TAB_VIEW_H__ | 6 #define CHROME_BROWSER_VIEWS_DONWLOAD_TAB_VIEW_H__ |
7 | 7 |
8 #include "base/hash_tables.h" | 8 #include "base/hash_tables.h" |
9 #include "chrome/browser/cancelable_request.h" | 9 #include "chrome/browser/cancelable_request.h" |
10 #include "chrome/browser/download_manager.h" | 10 #include "chrome/browser/download/download_manager.h" |
11 #include "chrome/browser/download_util.h" | 11 #include "chrome/browser/download/download_util.h" |
12 #include "chrome/browser/icon_manager.h" | 12 #include "chrome/browser/icon_manager.h" |
13 #include "chrome/browser/native_ui_contents.h" | 13 #include "chrome/browser/native_ui_contents.h" |
14 #include "chrome/views/event.h" | 14 #include "chrome/views/event.h" |
15 #include "chrome/views/label.h" | 15 #include "chrome/views/label.h" |
16 #include "chrome/views/link.h" | 16 #include "chrome/views/link.h" |
17 #include "chrome/views/scroll_view.h" | 17 #include "chrome/views/scroll_view.h" |
18 | 18 |
19 class DownloadTabView; | 19 class DownloadTabView; |
20 class SkBitmap; | 20 class SkBitmap; |
21 class Task; | 21 class Task; |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 | 242 |
243 // The view we return from GetView. The contents of this is the | 243 // The view we return from GetView. The contents of this is the |
244 // bookmarks_view_ | 244 // bookmarks_view_ |
245 SearchableUIContainer searchable_container_; | 245 SearchableUIContainer searchable_container_; |
246 | 246 |
247 DownloadTabView* download_tab_view_; | 247 DownloadTabView* download_tab_view_; |
248 | 248 |
249 DISALLOW_EVIL_CONSTRUCTORS(DownloadTabUI); | 249 DISALLOW_EVIL_CONSTRUCTORS(DownloadTabUI); |
250 }; | 250 }; |
251 | 251 |
252 #endif // CHROME_BROWSER_DONWLOAD_TAB_VIEW_H__ | 252 #endif // CHROME_BROWSER_VIEWS_DONWLOAD_TAB_VIEW_H__ |
OLD | NEW |