Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	d7689bb9b5 
 
						 
						
							
							
								
								
								docs: expand dialog window to BaseWindow ( #43334 )  
							
							... 
							
							
							
							docs: expand dialog window to BaseWindow 
							
						 
						
							2024-08-16 10:49:10 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robo 
								
							 
						 
						
							
							
								
							
							
	
	
	9b166b3ed4 
 
						 
						
							
							
								
								
								feat: support app#login event for utility process net requests ( #42631 )  
							
							... 
							
							
							
							* feat: support app#login event for utility process net requests
* chore: address review feedback
* GlobalRequestID: Avoid unwanted inlining and narrowing int conversions
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5702737  
							
						 
						
							2024-08-14 11:36:47 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	d294871980 
 
						 
						
							
							
								
								
								chore: deprecate textured  BrowserWindow type option on macOS ( #43133 )  
							
							
							
						 
						
							2024-08-12 10:32:35 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Charles Kerr 
								
							 
						 
						
							
							
								
							
							
	
	
	c35739d60d 
 
						 
						
							
							
								
								
								refactor: use url::DomainIs() to check cookie domains ( #43262 )  
							
							... 
							
							
							
							* test: add tests to exercise pre-exsiting cookie domain matching behavior
* refactor: use url::DomainIs() to match cookie domains
* docs: fix typo 
							
						 
						
							2024-08-09 18:35:18 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Felix Rieseberg 
								
							 
						 
						
							
							
								
							
							
	
	
	3fabf7837e 
 
						 
						
							
							
								
								
								docs: Document ideal iconPath size ( #43149 )  
							
							
							
						 
						
							2024-08-07 11:43:05 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	5669a40d5c 
 
						 
						
							
							
								
								
								feat: add transparency checking to nativeTheme ( #42862 )  
							
							... 
							
							
							
							* feat: add transparency checking to nativeTheme
Refs https://chromium-review.googlesource.com/c/chromium/src/+/4684870 
* chore: deprecate previous function
* chore: fix lint 
							
						 
						
							2024-07-24 14:38:22 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	9fc760bc4c 
 
						 
						
							
							
								
								
								docs: note macOS fullscreen events in fullscreen query ( #42997 )  
							
							... 
							
							
							
							docs: note macOS fullscreen events in fs query 
							
						 
						
							2024-07-23 16:40:59 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	3c9d4452c6 
 
						 
						
							
							
								
								
								docs: improve desktop capture example ( #42957 )  
							
							
							
						 
						
							2024-07-23 11:55:23 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	8454f4e49f 
 
						 
						
							
							
								
								
								feat: emit an event when accessing restricted path in File System Access API ( #42561 )  
							
							... 
							
							
							
							* fix: show a dialog when accessing restricted path in File System Access API
* fix: allow overriding initial blocked paths
* docs: fix doc
* Update docs/api/session.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* fix: change block to deny for consistency
---------
Co-authored-by: Erick Zhao <erick@hotmail.ca> 
							
						 
						
							2024-07-22 12:18:15 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									arno renevier 
								
							 
						 
						
							
							
								
							
							
	
	
	81bdba67ec 
 
						 
						
							
							
								
								
								feat: Implement password delegate for NSS ( #41205 )  
							
							... 
							
							
							
							* feat: Implement password delegate for NSS (#41188 )
Introduce an app event client-certificate-request-password. It allows
the user to display a UI to prompt for the password.
An alternative would have been to implement a class similar to
CryptoModulePasswordDialogView, to provide the UI. This might have been
simpler for the user, comparing to letting them implement the UI. But it
seems like electron does not have an i18n framework, so it's not
possible to provide a locale aware UI.
* fix lint:markdown error
* address review comments
* use a trampoline handler in JS. The api exposed is now app.setClientCertRequestPasswordHandler
* use properties on the Event object instead of positional parameters
* remove ChromeNSSCryptoModuleDelegate::OnPassword in favor of args->GetNext(&password_)
* address review comments second round
- backslash escape parametrized TypeScript
- rename hostName param to hostname
- use base::ScopedAllowBaseSyncPrimitivesForTesting
- and then, rename ChromeNSSCryptoModuleDelegate to ElectronNSSCryptoModuleDelegate
* Update docs/api/app.md
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
* Update docs/api/app.md
Co-authored-by: Erick Zhao <erick@hotmail.ca>
---------
Co-authored-by: Arno Renevier <arnaud@switchboard.app>
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
Co-authored-by: Erick Zhao <erick@hotmail.ca> 
							
						 
						
							2024-07-17 09:48:03 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Sam Maddock 
								
							 
						 
						
							
							
								
							
							
	
	
	778d3098a0 
 
						 
						
							
							
								
								
								feat: customize border radius of Views ( #42320 )  
							
							... 
							
							
							
							* feat: add View#setBorderRadius
test: initial setBorderRadius tests
fix: robustly set border radius
chore: add PAUSE_CAPTURE_TESTS for easier screencap dev
feat: add view border radius support
test: view border radius
refactor: cleanup view code
* maybe delay capture to fix tests?
* refactor: retry screen captures in an attempt to fix flakiness
* refactor: ScreenCapture constructor no longer async
* increase screen capture timeout, feels a little short
* refactor: move rounded rect util into chromium_src
* skip some capture tests on mas 
							
						 
						
							2024-07-16 20:16:25 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Theo Gravity 
								
							 
						 
						
							
							
								
							
							
	
	
	bab3fcc9ab 
 
						 
						
							
							
								
								
								feat:  add getPercentComplete / getCurrentBytesPerSecond / getEndTime to DownloadItem ( #42805 )  
							
							... 
							
							
							
							feat: getCurrentSpeed / getPercentComplete / getEndTime on DownloadItem 
							
						 
						
							2024-07-15 19:32:44 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Anny Yang 
								
							 
						 
						
							
							
								
							
							
	
	
	14303a0a71 
 
						 
						
							
							
								
								
								docs: grammar fix in isBeingCaptured docs ( #42692 )  
							
							
							
						 
						
							2024-07-01 15:01:27 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Chris Stringer 
								
							 
						 
						
							
							
								
							
							
	
	
	2b5342cb49 
 
						 
						
							
							
								
								
								docs - Update net.md ( #42691 )  
							
							... 
							
							
							
							Update net.md
Changes heading level for net.resolveHost() entry to H3 
							
						 
						
							2024-07-01 14:45:49 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	32e5012017 
 
						 
						
							
							
								
								
								feat: enable Windows Control Overlay on Linux ( #41769 )  
							
							
							
						 
						
							2024-06-27 14:56:36 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Samuel Attard 
								
							 
						 
						
							
							
								
							
							
	
	
	b31acfb706 
 
						 
						
							
							
								
								
								docs: clarify security semantics of safeStorage ( #42666 )  
							
							... 
							
							
							
							* docs: clarify security semantics of safeStorage
* Apply suggestions from code review
Co-authored-by: Erick Zhao <erick@hotmail.ca>
* Update safe-storage.md
* Update safe-storage.md
---------
Co-authored-by: Erick Zhao <erick@hotmail.ca> 
							
						 
						
							2024-06-26 13:24:06 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									George Xu 
								
							 
						 
						
							
							
								
							
							
	
	
	ba8ad4716b 
 
						 
						
							
							
								
								
								feat: expose system preferences to utility process ( #42203 )  
							
							... 
							
							
							
							* chore: expose  system preferences to utility process
* chore: add tests, doc changes and module-list update
* relative link
* use @
* fix test
* chore: disable linux test
* kick
* noop on windows utility process 
							
						 
						
							2024-06-20 11:15:57 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									David Sanders 
								
							 
						 
						
							
							
								
							
							
	
	
	6d4c2057e4 
 
						 
						
							
							
								
								
								docs: add backticks around example URL ( #42536 )  
							
							
							
						 
						
							2024-06-17 16:35:26 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tomáš Hübelbauer 
								
							 
						 
						
							
							
								
							
							
	
	
	15c404a3c8 
 
						 
						
							
							
								
								
								docs: fix the Apple HIG link for Dock context menu ( #42450 )  
							
							... 
							
							
							
							Fix the Apple human interface guidelines link for Dock context menu
The link seems to have changed. This is the up to date link. 
							
						 
						
							2024-06-13 15:24:05 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									rcombs 
								
							 
						 
						
							
							
								
							
							
	
	
	d8e4579e3c 
 
						 
						
							
							
								
								
								feat: add cumulativeCPUUsage to AppMetrics and CPUUsage ( #41819 )  
							
							... 
							
							
							
							This allows apps to measure their CPU usage over any given period
without worrying about other calls affecting the output,
as they would with `percentCPUUsage`. 
							
						 
						
							2024-06-11 09:38:03 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									David Sanders 
								
							 
						 
						
							
							
								
							
							
	
	
	c6845b0afc 
 
						 
						
							
							
								
								
								chore: update @electron/lint-roller to 2.2.0 ( #42412 )  
							
							
							
						 
						
							2024-06-10 10:14:03 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	91205540c4 
 
						 
						
							
							
								
								
								fix: restore wasOpenedAtLogin functionality ( #42411 )  
							
							... 
							
							
							
							fix: restore opened at login functionality 
							
						 
						
							2024-06-10 09:39:56 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Alice Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	406f644d26 
 
						 
						
							
							
								
								
								feat: duplicate navigation related APIs to contents.navigationHistory ( #41752 )  
							
							... 
							
							
							
							* refactor: move navigation related api to navigationHistory
* docs: add deprecation messages to old web content methods
* fix: add deprecation warnings to webcontents
* fix: add deprecation warnings and make existing naviagation apis internal
* Update docs/api/web-contents.md
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
* Update docs/api/web-contents.md
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
* Update docs/api/web-contents.md
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
* Update docs/api/web-contents.md
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com>
* docs: fix links
* docs: add breaking change to 31
* docs: move breaking change to 32
* chore: re-run pipeline
---------
Co-authored-by: Sam Maddock <samuel.maddock@gmail.com> 
							
						 
						
							2024-06-05 09:34:47 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Krzysztof Halwa 
								
							 
						 
						
							
							
								
							
							
	
	
	85df2a86dd 
 
						 
						
							
							
								
								
								feat: Allow WebContentsView to accept webContents object. ( #42086 )  
							
							... 
							
							
							
							feat: Allow WebContentsView to accept webContents object 
							
						 
						
							2024-05-30 12:45:35 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Erick Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	09fb892c6e 
 
						 
						
							
							
								
								
								docs: ensure all links are on a single line ( #42235 )  
							
							
							
						 
						
							2024-05-28 11:15:18 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Evo 
								
							 
						 
						
							
							
								
							
							
	
	
	6423968dc5 
 
						 
						
							
							
								
								
								fix: fixed the type of WebviewTag.webpreferences ( #42275 )  
							
							... 
							
							
							
							fix: fixed the type of WebviewTag.webpreferences 
							
						 
						
							2024-05-25 22:06:06 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Erick Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	b8381b7d93 
 
						 
						
							
							
								
								
								docs: fix broken anchors ( #42213 )  
							
							
							
						 
						
							2024-05-17 09:46:18 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jeremy Rose 
								
							 
						 
						
							
							
								
							
							
	
	
	19dc276878 
 
						 
						
							
							
								
								
								feat: remove File.path ( #42053 )  
							
							
							
						 
						
							2024-05-15 11:07:23 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									David Sanders 
								
							 
						 
						
							
							
								
							
							
	
	
	88f28a302f 
 
						 
						
							
							
								
								
								docs: improve protocol.handle file examples ( #42111 )  
							
							... 
							
							
							
							* docs: improve protocol.handle file examples
* chore: fix lint 
							
						 
						
							2024-05-13 11:49:18 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									David Sanders 
								
							 
						 
						
							
							
								
							
							
	
	
	c00eb5d491 
 
						 
						
							
							
								
								
								chore: update @electron/lint-roller to 2.1.0 ( #42078 )  
							
							
							
						 
						
							2024-05-10 11:00:15 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	3bd807b03e 
 
						 
						
							
							
								
								
								fix: View reordering on re-addition to same parent ( #42085 )  
							
							
							
						 
						
							2024-05-10 10:16:33 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Erick Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	c3c4173377 
 
						 
						
							
							
								
								
								docs: update formatting for mdx3 compatibility ( #42052 )  
							
							... 
							
							
							
							docs: update formatting for mdx3 compat 
							
						 
						
							2024-05-07 19:20:47 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Kilian Valkhof 
								
							 
						 
						
							
							
								
							
							
	
	
	1cf194faae 
 
						 
						
							
							
								
								
								docs: correct the return value for canceled showSaveDialog ( #41926 )  
							
							
							
						 
						
							2024-04-23 11:29:14 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Erick Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	755f7d5ed0 
 
						 
						
							
							
								
								
								docs: clarify before ready usage ( #41849 )  
							
							
							
						 
						
							2024-04-15 10:38:58 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cedrik Ewers 
								
							 
						 
						
							
							
								
							
							
	
	
	734395bea9 
 
						 
						
							
							
								
								
								docs: use "id" instead of "label" for positions ( #41843 )  
							
							... 
							
							
							
							Co-authored-by: Cedrik Ewers <C.Ewers@beckhoff.com> 
							
						 
						
							2024-04-14 17:10:09 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	344aba0838 
 
						 
						
							
							
								
								
								feat: implement File System API support ( #41419 )  
							
							
							
						 
						
							2024-04-10 22:06:47 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	43a9f70d19 
 
						 
						
							
							
								
								
								feat: support NODE_EXTRA_CA_CERTS ( #41689 )  
							
							... 
							
							
							
							* feat: support NODE_EXTRA_CA_CERTS
* chore: allow disabling NODE_EXTRA_CA_CERTS
* chore: call base::Environment::UnSetVar
* docs: link to fuses from env vars
* chore: update patch to match upstream
* docs: note enabled by default
* Update environment-variables.md
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
---------
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> 
							
						 
						
							2024-04-10 10:30:35 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									David Sanders 
								
							 
						 
						
							
							
								
							
							
	
	
	42164d7081 
 
						 
						
							
							
								
								
								build: add Markdown lint check for unescaped angle brackets ( #41753 )  
							
							
							
						 
						
							2024-04-04 14:50:35 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Calvin 
								
							 
						 
						
							
							
								
							
							
	
	
	3eb94b72ba 
 
						 
						
							
							
								
								
								feat: Options parameter for Session.clearData API ( #41355 )  
							
							... 
							
							
							
							* feat: Options parameter for `Session.clearData` API
* Consolidate & curate data type categories
* Update docs for better typing
* off-by-one typo
* refactor to use `std::shared_ptr` instead of `base::RefCounted`
* fix compile errors
* std::enable_shared_from_this didn't work 🤷 
* Refine docs with defaults 
							
						 
						
							2024-04-01 12:09:01 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Jeremy Rose 
								
							 
						 
						
							
							
								
							
							
	
	
	c6102b9278 
 
						 
						
							
							
								
								
								docs: add missing headers option to ClientRequest options ( #41723 )  
							
							
							
						 
						
							2024-03-28 09:38:16 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Shelley Vohr 
								
							 
						 
						
							
							
								
							
							
	
	
	08241669bc 
 
						 
						
							
							
								
								
								test: add tests for Storage Access API ( #41698 )  
							
							
							
						 
						
							2024-03-27 19:52:24 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Erick Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	b9c4b27781 
 
						 
						
							
							
								
								
								docs: backslash escape parametrized TypeScript types ( #41575 )  
							
							... 
							
							
							
							* docs: backslash escape parametrized TypeScript types
* missing instances 
							
						 
						
							2024-03-25 11:19:44 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Alice Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	00e3445f8a 
 
						 
						
							
							
								
								
								feat: add navigationHistory.getEntryAtIndex(int index) method ( #41577 )  
							
							
							
						 
						
							2024-03-21 14:59:23 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Erick Zhao 
								
							 
						 
						
							
							
								
							
							
	
	
	2f133f5e28 
 
						 
						
							
							
								
								
								docs: nativeImage api cleanup ( #41519 )  
							
							... 
							
							
							
							* docs: `nativeImage` api cleanup
* Update docs/api/native-image.md
* Update native-image.md
* Update docs/api/native-image.md
Co-authored-by: Felix Rieseberg <fr@makenotion.com>
* Update link to app icon
Co-authored-by: Alice Zhao <66543449+alicelovescake@users.noreply.github.com>
---------
Co-authored-by: Felix Rieseberg <fr@makenotion.com>
Co-authored-by: Alice Zhao <66543449+alicelovescake@users.noreply.github.com> 
							
						 
						
							2024-03-12 12:33:56 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Krzysztof Halwa 
								
							 
						 
						
							
							
								
							
							
	
	
	a0dad83ded 
 
						 
						
							
							
								
								
								feat: Allow creation of new window to be customizable. ( #41432 )  
							
							
							
						 
						
							2024-02-29 10:15:01 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									electron-roller[bot] 
								
							 
						 
						
							
							
								
							
							
	
	
	04df5ce492 
 
						 
						
							
							
								
								
								chore: bump chromium to 124.0.6323.0 (main) ( #41412 )  
							
							... 
							
							
							
							* chore: bump chromium in DEPS to 124.0.6315.0
* chore: update patches
* 5279678: Stream AIDA responses
https://chromium-review.googlesource.com/c/chromium/src/+/5279678 
* 5276439: Remove non_network_url_loader_factory_remotes_
https://chromium-review.googlesource.com/c/chromium/src/+/5276439 
* 5310165: Add DevTools API to show search results
https://chromium-review.googlesource.com/c/chromium/src/+/5310165 
* chore: bump chromium in DEPS to 124.0.6317.0
* chore: update patches
* Remove Setup.Install.CumulativeDiskUsage2 and supporting code
https://chromium-review.googlesource.com/c/chromium/src/+/5314269 
* browser: Make cmd line non-const in process singleton callback
https://chromium-review.googlesource.com/c/chromium/src/+/5311256 
* chore: bump chromium in DEPS to 124.0.6319.0
* chore: bump chromium in DEPS to 124.0.6321.0
* chore: bump chromium in DEPS to 124.0.6323.0
* 5318335: Roll src/third_party/boringssl/src 23824fa0f..4fe29ebc7
https://chromium-review.googlesource.com/c/chromium/src/+/5318335 
* 5318051: [CBE Watermarking] Hoist `watermark_view` to a member variable.
https://chromium-review.googlesource.com/c/chromium/src/+/5318051 
* chore: fixup patch indices
* 4946553: Delegate HID permission to Chrome App in webview
https://chromium-review.googlesource.com/c/chromium/src/+/4946553 
* 5310001: DevTools UI binding for reporting client events to AIDA
https://chromium-review.googlesource.com/c/chromium/src/+/5310001 
* [libc++] Refactor the predicate taking variant of `__cxx_atomic_wait`
* chore: fix browser_view patch harder
* 5293937: Reland "[gUM] Use preferred device if more than one is eligible"
https://chromium-review.googlesource.com/c/chromium/src/+/5293937 
* fix: filter {video|audio} devices by eligible device id
* 5267921: enable speak content under the pointer on PWA and WV2
https://chromium-review.googlesource.com/c/chromium/src/+/5267921 
* 5310195: heap: Remove Blink's GCTaskRunner
https://chromium-review.googlesource.com/c/chromium/src/+/5310195 
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> 
							
						 
						
							2024-02-29 10:31:13 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Milan Burda 
								
							 
						 
						
							
							
								
							
							
	
	
	3885011220 
 
						 
						
							
							
								
								
								chore: remove deprecated inputFieldType ( #41239 )  
							
							... 
							
							
							
							chore: remove deprecated inputFieldType 
							
						 
						
							2024-02-26 07:47:16 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Calvin 
								
							 
						 
						
							
							
								
							
							
	
	
	12d7a8ff66 
 
						 
						
							
							
								
								
								feat: Session#clearData API ( #40983 )  
							
							... 
							
							
							
							* WIP: Session.clearBrowsingData API
* impl API method
* clean up
* tidy types and comments
* add docs
* add barebones test
* forgot a `#` :(
* tidy: address review comments
* use format macro for cross-platform build
* add another test
* amend docs to disambiguate
* Rename to `clearData` 
							
						 
						
							2024-02-26 09:39:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robo 
								
							 
						 
						
							
							
								
							
							
	
	
	26131b23b8 
 
						 
						
							
							
								
								
								feat: add support for configuring system network context proxies ( #41335 )  
							
							... 
							
							
							
							* feat: add support for configuring system network context proxies
* chore: add specs
* chore: fix lint
* fix: address review feedback 
							
						 
						
							2024-02-22 12:08:25 -05:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									electron-roller[bot] 
								
							 
						 
						
							
							
								
							
							
	
	
	e72f4f7f26 
 
						 
						
							
							
								
								
								chore: bump chromium to 123.0.6312.5 (main) ( #41337 )  
							
							... 
							
							
							
							* chore: bump chromium in DEPS to 123.0.6300.2
* chore: bump chromium in DEPS to 123.0.6301.2
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6302.0
* chore: bump chromium in DEPS to 123.0.6304.0
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6306.2
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6308.0
* chore: update patches
* Refactor //components/pdf/common constants
https://chromium-review.googlesource.com/c/chromium/src/+/5292816 
* Rename URLLoaderFactoryParams::is_corb_enabled to is_orb_enabled.
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5277040 
* Add placeholder of speaker-selection permission.
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5278243 
* Move kPdfMimeType to //components/pdf/common/constants.h
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5293155 
* chore: gen-libc++-filenames.js
* Make GetClassName non virtual
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5293075 
Refs https://issues.chromium.org/issues/324596267 
* chore: bump chromium in DEPS to 123.0.6310.0
* chore: update filenames.libcxx.gni
* 5282732: Compute input region using correct pixel size.
https://chromium-review.googlesource.com/c/chromium/src/+/5282732 
* fixup: Make GetClassName non virtual
* chore: bump chromium in DEPS to 123.0.6312.0
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6312.5
* fixup: Make GetClassName non virtual
* docs: document speaker-selection
https://chromium-review.googlesource.com/c/chromium/src/+/5278243 
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: deepak1556 <hop2deep@gmail.com>
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> 
							
						 
						
							2024-02-21 15:27:05 -05:00