From 935aa54d9a5e2e617c61c9f8dcea398768413443 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 15 Oct 2010 01:59:15 +0000 Subject: Move windows version-related stuff out of base/win_util and into base/win/windows_version. Many files now only need to include this instead of all of win_util. Remove a bunch of unused code from base/win_util. There was a surprising amount. Replace the AppUserModel property key with the one from the SDK now that we use the Win7 SDK. Move GetLogonSessionOnlyDACL from win_util to ipc since it's only used in that one place. TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3823002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62694 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/bug_report_util.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'chrome/browser/bug_report_util.h') diff --git a/chrome/browser/bug_report_util.h b/chrome/browser/bug_report_util.h index c01acc04..7d5af5d 100644 --- a/chrome/browser/bug_report_util.h +++ b/chrome/browser/bug_report_util.h @@ -12,6 +12,8 @@ #if defined(OS_MACOSX) #include "base/mac_util.h" #include "base/sys_info.h" +#elif defined(OS_WIN) +#include "base/win/windows_version.h" #endif #include "chrome/browser/userfeedback/proto/common.pb.h" #include "chrome/browser/userfeedback/proto/extension.pb.h" @@ -54,7 +56,7 @@ class BugReportUtil { // SetOSVersion copies the maj.minor.build + servicePack_string // into a string. We currently have: - // win_util::GetWinVersion returns WinVersion, which is just + // base::win::GetVersion returns WinVersion, which is just // an enum of 2000, XP, 2003, or VISTA. Not enough detail for // bug reports. // base::SysInfo::OperatingSystemVersion returns an std::string -- cgit v1.1