feat: replace BrowserView with WebContentsView (#35658)
This commit is contained in:
parent
a94fb2cb5d
commit
15c6014324
76 changed files with 2987 additions and 1531 deletions
18
shell/browser/animation_util.h
Normal file
18
shell/browser/animation_util.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Copyright (c) 2022 Salesforce, Inc.
|
||||
// Use of this source code is governed by the MIT license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
#ifndef ELECTRON_SHELL_BROWSER_ANIMATION_UTIL_H_
|
||||
#define ELECTRON_SHELL_BROWSER_ANIMATION_UTIL_H_
|
||||
|
||||
#include "build/build_config.h"
|
||||
|
||||
#if BUILDFLAG(IS_MAC)
|
||||
class ScopedCAActionDisabler {
|
||||
public:
|
||||
ScopedCAActionDisabler();
|
||||
~ScopedCAActionDisabler();
|
||||
};
|
||||
#endif
|
||||
|
||||
#endif // ELECTRON_SHELL_BROWSER_ANIMATION_UTIL_H_
|
Loading…
Add table
Add a link
Reference in a new issue