Index: chrome/browser/fullscreen_mac.mm |
diff --git a/chrome/browser/fullscreen_mac.mm b/chrome/browser/fullscreen_mac.mm |
index 212e0d4d1946f65e886d8821c667275ad4658f0c..ed6189b0156fe01480cf10cc53fcc2903d3cee60 100644 |
--- a/chrome/browser/fullscreen_mac.mm |
+++ b/chrome/browser/fullscreen_mac.mm |
@@ -7,7 +7,6 @@ |
#import <Cocoa/Cocoa.h> |
#include "base/command_line.h" |
-#include "base/mac/mac_util.h" |
#include "base/mac/sdk_forward_declarations.h" |
#include "chrome/common/chrome_switches.h" |
@@ -40,7 +39,8 @@ namespace chrome { |
namespace mac { |
bool SupportsSystemFullscreen() { |
- return base::mac::IsOSLionOrLater(); |
+ // TODO(spqchan): Clean this up, https://crbug.com/579259 |
+ return true; |
} |
} // namespace mac |