OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_ |
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
13 | 13 |
14 class SavePackage; | 14 class SavePackage; |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 class DownloadItem; | 17 class DownloadItem; |
18 } | 18 } |
19 | 19 |
20 namespace gfx { | 20 namespace gfx { |
21 class Font; | 21 class Font; |
22 } | 22 } |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 130 |
131 // The DownloadItem that this model represents. Note that DownloadItemModel | 131 // The DownloadItem that this model represents. Note that DownloadItemModel |
132 // itself shouldn't maintain any state since there can be more than one | 132 // itself shouldn't maintain any state since there can be more than one |
133 // DownloadItemModel in use with the same DownloadItem. | 133 // DownloadItemModel in use with the same DownloadItem. |
134 content::DownloadItem* download_; | 134 content::DownloadItem* download_; |
135 | 135 |
136 DISALLOW_COPY_AND_ASSIGN(DownloadItemModel); | 136 DISALLOW_COPY_AND_ASSIGN(DownloadItemModel); |
137 }; | 137 }; |
138 | 138 |
139 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_ | 139 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_MODEL_H_ |
OLD | NEW |