animation_util.h 454 B

123456789101112131415161718
  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. #ifndef ELECTRON_SHELL_BROWSER_ANIMATION_UTIL_H_
  5. #define ELECTRON_SHELL_BROWSER_ANIMATION_UTIL_H_
  6. #include "build/build_config.h"
  7. #if BUILDFLAG(IS_MAC)
  8. class ScopedCAActionDisabler {
  9. public:
  10. ScopedCAActionDisabler();
  11. ~ScopedCAActionDisabler();
  12. };
  13. #endif
  14. #endif // ELECTRON_SHELL_BROWSER_ANIMATION_UTIL_H_