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 // Download utilities. | 5 // Download utilities. |
6 | 6 |
7 #ifndef CHROME_BROWSER_DOWNLOAD_UTIL_H__ | 7 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H__ |
8 #define CHROME_BROWSER_DOWNLOAD_UTIL_H__ | 8 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H__ |
9 | 9 |
10 #include <objidl.h> | 10 #include <objidl.h> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/task.h" | 13 #include "base/task.h" |
14 #include "chrome/browser/views/download_item_view.h" | 14 #include "chrome/browser/views/download_item_view.h" |
15 #include "chrome/views/event.h" | 15 #include "chrome/views/event.h" |
16 #include "chrome/views/menu.h" | 16 #include "chrome/views/menu.h" |
17 #include "chrome/views/view.h" | 17 #include "chrome/views/view.h" |
18 | 18 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 void DragDownload(const DownloadItem* download, SkBitmap* icon); | 181 void DragDownload(const DownloadItem* download, SkBitmap* icon); |
182 | 182 |
183 // Executable file support ----------------------------------------------------- | 183 // Executable file support ----------------------------------------------------- |
184 | 184 |
185 // Copy all executable file extensions. | 185 // Copy all executable file extensions. |
186 void InitializeExeTypes(std::set<std::wstring>* exe_extensions); | 186 void InitializeExeTypes(std::set<std::wstring>* exe_extensions); |
187 | 187 |
188 } // namespace download_util | 188 } // namespace download_util |
189 | 189 |
190 | 190 |
191 #endif // CHROME_BROWSER_DOWNLOAD_UTIL_H__ | 191 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_UTIL_H__ |
192 | 192 |
OLD | NEW |