| 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 CONTENT_COMMON_SAFE_UTIL_WIN_H_ | 5 #ifndef CONTENT_BROWSER_SAFE_UTIL_WIN_H_ |
| 6 #define CONTENT_COMMON_SAFE_UTIL_WIN_H_ | 6 #define CONTENT_BROWSER_SAFE_UTIL_WIN_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <windows.h> | 9 #include <windows.h> |
| 10 | 10 |
| 11 class GURL; | 11 class GURL; |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class FilePath; | 14 class FilePath; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 43 // |source_url|: the source URL for the download. If empty, the source will | 43 // |source_url|: the source URL for the download. If empty, the source will |
| 44 // not be set. | 44 // not be set. |
| 45 // |client_guid|: the GUID to be set in the IAttachmentExecute client slot. | 45 // |client_guid|: the GUID to be set in the IAttachmentExecute client slot. |
| 46 // Used to identify the app to the system AV function. | 46 // Used to identify the app to the system AV function. |
| 47 // If GUID_NULL is passed, no client GUID is set. | 47 // If GUID_NULL is passed, no client GUID is set. |
| 48 HRESULT AVScanFile(const base::FilePath& full_path, | 48 HRESULT AVScanFile(const base::FilePath& full_path, |
| 49 const std::string& source_url, | 49 const std::string& source_url, |
| 50 const GUID& client_guid); | 50 const GUID& client_guid); |
| 51 } // namespace content | 51 } // namespace content |
| 52 | 52 |
| 53 #endif // CONTENT_COMMON_SAFE_UTIL_WIN_H_ | 53 #endif // CONTENT_BROWSER_SAFE_UTIL_WIN_H_ |
| OLD | NEW |