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

Unified Diff: base/win/metro.cc

Issue 671273003: Parental controls only need to be Win7. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/metro.cc
diff --git a/base/win/metro.cc b/base/win/metro.cc
index 62743c799b56cc1cc12b5985e48595646f1642ab..6e443ba66b61a3747cc29cfb1f7f166320b6fd7d 100644
--- a/base/win/metro.cc
+++ b/base/win/metro.cc
@@ -74,8 +74,8 @@ wchar_t* LocalAllocAndCopyString(const string16& src) {
}
bool IsParentalControlActivityLoggingOn() {
- // Query this info on Windows Vista and above.
- if (base::win::GetVersion() < base::win::VERSION_VISTA)
+ // Query this info on Windows 7 and above.
grt (UTC plus 2) 2014/10/23 22:25:39 please update the comment in chrome/browser/prefs/
+ if (base::win::GetVersion() < base::win::VERSION_WIN7)
return false;
static bool parental_control_logging_required = false;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698