| Index: ui/base/test/scoped_fake_nswindow_fullscreen.mm
 | 
| diff --git a/ui/base/test/scoped_fake_nswindow_fullscreen.mm b/ui/base/test/scoped_fake_nswindow_fullscreen.mm
 | 
| index 0b327692e4c8c875eac938fe7018681d2dbfb538..1fcd8949b61477e13f8684b6b1548902532d31d2 100644
 | 
| --- a/ui/base/test/scoped_fake_nswindow_fullscreen.mm
 | 
| +++ b/ui/base/test/scoped_fake_nswindow_fullscreen.mm
 | 
| @@ -196,10 +196,6 @@ class ScopedFakeNSWindowFullscreen::Impl {
 | 
|  };
 | 
|  
 | 
|  ScopedFakeNSWindowFullscreen::ScopedFakeNSWindowFullscreen() {
 | 
| -  // -[NSWindow toggleFullScreen:] does not exist on 10.6, so do nothing.
 | 
| -  if (base::mac::IsOSSnowLeopard())
 | 
| -    return;
 | 
| -
 | 
|    DCHECK(!g_fake_fullscreen_impl);
 | 
|    impl_.reset(new Impl);
 | 
|    g_fake_fullscreen_impl = impl_.get();
 | 
| 
 |