Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: content/browser/safe_util_win.h

Issue 942963003: Cleanup: Fix content header include guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698