animation_util_mac.mm 454 B

1234567891011121314151617
  1. // Copyright (c) 2022 Salesforce, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #include "shell/browser/animation_util.h"
  5. #import <QuartzCore/QuartzCore.h>
  6. // Disables actions within a scope.
  7. ScopedCAActionDisabler::ScopedCAActionDisabler() {
  8. [CATransaction begin];
  9. [CATransaction setDisableActions:YES];
  10. }
  11. ScopedCAActionDisabler::~ScopedCAActionDisabler() {
  12. [CATransaction commit];
  13. }