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

Unified Diff: third_party/WebKit/Source/platform/mac/VersionUtilMac.mm

Issue 1849343003: mac: Remove IsOSSnowLeopard(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/mac/VersionUtilMac.mm
diff --git a/third_party/WebKit/Source/platform/mac/VersionUtilMac.mm b/third_party/WebKit/Source/platform/mac/VersionUtilMac.mm
index d91f04492967fbf25ae963be34c62683b2ea7427..6567430b3f8c6278380bcbcae89cde4bfc80e8cc 100644
--- a/third_party/WebKit/Source/platform/mac/VersionUtilMac.mm
+++ b/third_party/WebKit/Source/platform/mac/VersionUtilMac.mm
@@ -57,7 +57,6 @@ int MacOSXMinorVersion()
}
enum {
- SNOW_LEOPARD_MINOR_VERSION = 6,
LION_MINOR_VERSION = 7,
MAVERICKS_MINOR_VERSION = 9,
YOSEMITE_MINOR_VERSION = 10,
@@ -68,11 +67,6 @@ enum {
namespace blink {
-bool IsOSSnowLeopard()
-{
- return MacOSXMinorVersion() == SNOW_LEOPARD_MINOR_VERSION;
-}
-
bool IsOSLionOrEarlier()
{
return MacOSXMinorVersion() <= LION_MINOR_VERSION;
« no previous file with comments | « third_party/WebKit/Source/platform/mac/VersionUtilMac.h ('k') | third_party/WebKit/Source/platform/scroll/Scrollbar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698