fix: trace-startup crashing child process on macOS (32-x-y) (#44292)
* fix: trace-startup crashing child process on macOS (32-x-y) * chore: disable test on linux arm * chore: also disable on linux arm64
This commit is contained in:
parent
519da8e634
commit
d5d936d078
4 changed files with 46 additions and 13 deletions
|
@ -32,6 +32,12 @@ class ElectronMainDelegate : public content::ContentMainDelegate {
|
|||
|
||||
base::StringPiece GetBrowserV8SnapshotFilename() override;
|
||||
|
||||
#if BUILDFLAG(IS_MAC)
|
||||
void OverrideChildProcessPath();
|
||||
void OverrideFrameworkBundlePath();
|
||||
void SetUpBundleOverrides();
|
||||
#endif
|
||||
|
||||
protected:
|
||||
// content::ContentMainDelegate:
|
||||
std::optional<int> BasicStartupComplete() override;
|
||||
|
@ -54,12 +60,6 @@ class ElectronMainDelegate : public content::ContentMainDelegate {
|
|||
#endif
|
||||
|
||||
private:
|
||||
#if BUILDFLAG(IS_MAC)
|
||||
void OverrideChildProcessPath();
|
||||
void OverrideFrameworkBundlePath();
|
||||
void SetUpBundleOverrides();
|
||||
#endif
|
||||
|
||||
std::unique_ptr<content::ContentBrowserClient> browser_client_;
|
||||
std::unique_ptr<content::ContentClient> content_client_;
|
||||
std::unique_ptr<content::ContentGpuClient> gpu_client_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue