[go: nahoru, domu]

blob: 76f1a34ffc29827bebb9b58db86018c306e72909 [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ui/base/test/scoped_fake_nswindow_fullscreen.h"
#import <Cocoa/Cocoa.h>
#import "base/apple/foundation_util.h"
#import "base/apple/scoped_objc_class_swizzler.h"
#include "base/functional/bind.h"
#import "base/mac/mac_util.h"
#include "base/run_loop.h"
#include "base/task/current_thread.h"
#include "ui/base/cocoa/nswindow_test_util.h"
namespace ui::test {
ScopedFakeNSWindowFullscreen::ScopedFakeNSWindowFullscreen() {
instance_count_ += 1;
ui::NSWindowFakedForTesting::SetEnabled(instance_count_ > 0);
}
ScopedFakeNSWindowFullscreen::~ScopedFakeNSWindowFullscreen() {
instance_count_ -= 1;
ui::NSWindowFakedForTesting::SetEnabled(instance_count_ > 0);
}
// static
int ScopedFakeNSWindowFullscreen::instance_count_ = 0;
} // namespace ui::test