12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: deepak1556 <[email protected]>
- Date: Tue, 15 Nov 2022 21:45:28 +0900
- Subject: chore: introduce blocking api for //electron
- This patch comes after Chromium removed the ScopedAllowIO API in favor
- of explicitly adding ScopedAllowBlocking calls as friends.
- diff --git a/base/threading/thread_restrictions.h b/base/threading/thread_restrictions.h
- index 0de909d74fffc91b9e3afead3204f9c8234fa131..0eca9f62f2bda366c93fa1c57f30e707f228f2a5 100644
- --- a/base/threading/thread_restrictions.h
- +++ b/base/threading/thread_restrictions.h
- @@ -132,6 +132,7 @@ class KeyStorageLinux;
- class NativeBackendKWallet;
- class NativeDesktopMediaList;
- class PartnerBookmarksReader;
- +class ProcessSingleton;
- class Profile;
- class ProfileImpl;
- class ScopedAllowBlockingForProfile;
- @@ -282,6 +283,9 @@ class BackendImpl;
- class InFlightIO;
- bool CleanupDirectorySync(const base::FilePath&);
- } // namespace disk_cache
- +namespace electron {
- +class ScopedAllowBlockingForElectron;
- +} // namespace electron
- namespace enterprise_connectors {
- class LinuxKeyRotationCommand;
- } // namespace enterprise_connectors
- @@ -579,6 +583,7 @@ class BASE_EXPORT ScopedAllowBlocking {
- friend class ::DesktopNotificationBalloon;
- friend class ::FirefoxProfileLock;
- friend class ::GaiaConfig;
- + friend class ::ProcessSingleton;
- friend class ::ProfileImpl;
- friend class ::ScopedAllowBlockingForProfile;
- friend class ::StartupTabProviderImpl;
- @@ -619,6 +624,7 @@ class BASE_EXPORT ScopedAllowBlocking {
- friend class crosapi::LacrosThreadTypeDelegate;
- friend class crypto::ScopedAllowBlockingForNSS; // http://crbug.com/59847
- friend class drive::FakeDriveService;
- + friend class electron::ScopedAllowBlockingForElectron;
- friend class extensions::InstalledLoader;
- friend class extensions::UnpackedInstaller;
- friend class font_service::internal::MappedFontFile;
|