Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	6e0762a540  
						 
						
							
							
								
								
								Fix building on Windows  
							
							
							
						 
						
							2017-01-19 09:05:59 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	497f5a1199  
						 
						
							
							
								
								
								Update files for Chrome 54 API changes  
							
							
							
						 
						
							2017-01-19 09:05:59 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Czipperz 
								
							 
						 
						
							
							
								
							
							
	e4688f1c5a  
						 
						
							
							
								
								
								Reorder BrowserProcess constructor to avoid invalid memory  
							
							
							
						 
						
							2017-01-12 16:55:26 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	7dd1ebc734  
						 
						
							
							
								
								
								Fix oops typos  
							
							
							
						 
						
							2016-10-11 14:02:29 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	06065d1c5d  
						 
						
							
							
								
								
								Instead of gating the path shortening to MAS_BUILD, figure it out at runtime  
							
							
							
						 
						
							2016-10-11 13:06:29 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	e84ae6e2aa  
						 
						
							
							
								
								
								Add a method to determine whether we're in the Apple sandbox  
							
							
							
						 
						
							2016-10-11 13:06:29 -07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Vadim Macagon 
								
							 
						 
						
							
							
								
							
							
	7c5d3296e7  
						 
						
							
							
								
								
								Prevent undefined behavior when some Node Buffer objects are destroyed  
							
							... 
							
							
							
							If node::Buffer::New() is used to wrap an existing chunk of memory
without providing a custom callback to release that memory then Node
will just use `free()`. In a couple of places Node buffer objects were
constructed from chunks of memory that were allocated with `new[]`, but
a custom callback to release that memory was omitted, this resulted in
undefined behavior when those buffers were destroyed because `free()`
was used to release memory allocated with `new[]`.
To avoid undefined behavior the aforementioned buffer objects are now
constructed with a custom callback that safely releases the underlying
chunk of memory. 
							
						 
						
							2016-10-03 10:26:26 +07:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	6d8f900916  
						 
						
							
							
								
								
								Fix building on Windows  
							
							
							
						 
						
							2016-09-14 16:22:43 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	4aa292c7cd  
						 
						
							
							
								
								
								Fix building on Linux  
							
							
							
						 
						
							2016-09-14 16:22:43 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	f28e8d7168  
						 
						
							
							
								
								
								Fix API changes of Chrome 53  
							
							
							
						 
						
							2016-09-14 16:22:43 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Hanae Kae 
								
							 
						 
						
							
							
								
							
							
	6ea5e50179  
						 
						
							
							
								
								
								Japanese font rendering in flash.  
							
							
							
						 
						
							2016-08-29 16:02:09 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	95d5de1444  
						 
						
							
							
								
								
								Fix printing on Windows when sandbox is enabled  
							
							... 
							
							
							
							Auditors:  @bridiver
This makes it closer to how it works in Chromium and fixes the forever spooling problem on Windows.
The old way worked when the sandbox was disabled but failed on the call for shared_buf.CreateAndMapAnonymous when the sandbox was enabled
This also fixes a handle leak which Chromium already had fixed. 
							
						 
						
							2016-08-07 10:46:08 -04:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	b57665330c  
						 
						
							
							
								
								
								Merge branch 'master' into chrome52  
							
							
							
						 
						
							2016-07-21 05:34:36 -06:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Haojian Wu 
								
							 
						 
						
							
							
								
							
							
	59e44c13e0  
						 
						
							
							
								
								
								Remove unused using decls.  
							
							
							
						 
						
							2016-07-09 22:23:57 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	381689d3ed  
						 
						
							
							
								
								
								Fix building on Windows  
							
							
							
						 
						
							2016-07-05 09:31:29 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	48f819f337  
						 
						
							
							
								
								
								Do not use home cooked SkUserConfig.h  
							
							
							
						 
						
							2016-07-04 15:32:43 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	1ba3907038  
						 
						
							
							
								
								
								Update to API changes of Chrome 52  
							
							
							
						 
						
							2016-07-04 15:32:43 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	44651656dd  
						 
						
							
							
								
								
								Fix building on Windows  
							
							
							
						 
						
							2016-05-23 16:39:19 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	a2bd55dd3c  
						 
						
							
							
								
								
								Adapt to changes of Chrome 51 API changes (Part 2)  
							
							
							
						 
						
							2016-05-23 12:29:14 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	9ccb495f60  
						 
						
							
							
								
								
								Do not remove the patch for Command key  
							
							
							
						 
						
							2016-05-13 11:11:50 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	a52dbf0784  
						 
						
							
							
								
								
								Update SharedMemory buf constructor  
							
							
							
						 
						
							2016-05-13 11:07:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	900001e547  
						 
						
							
							
								
								
								Update PlatformCanvas to SKCanvas  
							
							
							
						 
						
							2016-05-13 11:07:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	37ccd34a88  
						 
						
							
							
								
								
								Update x11 global shortcut listeners  
							
							
							
						 
						
							2016-05-13 11:07:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	0253aec0cd  
						 
						
							
							
								
								
								Add SkUserConfig.h with blank SkDebugf macro  
							
							... 
							
							
							
							This file was copied from:
./third_party/skia/include/config/SkUserConfig.h
But because of this linking error we needed to
define a macro for SkDebugf.
```
"SkDebugf(char const*, ...)", referenced from:
      SkBitmap::allocPixels(SkImageInfo const&, unsigned long) in
      libbrave_lib.a(brave_lib.native_desktop_media_list.o)
      ld: symbol(s) not found for architecture x86_64
```
There used to be a hack to copy this file here which was removed:
8de9d9e2bc 
							
						 
						
							2016-05-13 11:07:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	ce7c1023d5  
						 
						
							
							
								
								
								Minimum fixes needed for chromium_src  
							
							
							
						 
						
							2016-05-13 11:07:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian R. Bondy 
								
							 
						 
						
							
							
								
							
							
	2da39d31aa  
						 
						
							
							
								
								
								Update to new pref service location in components  
							
							
							
						 
						
							2016-05-13 11:07:17 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	4435cdc576  
						 
						
							
							
								
								
								Create user_data_dir before creating singleton lock  
							
							
							
						 
						
							2016-04-27 21:52:50 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	0900762507  
						 
						
							
							
								
								
								Make the length of SingletonSocket's path as short as we can  
							
							
							
						 
						
							2016-04-21 13:58:11 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									deepak1556 
								
							 
						 
						
							
							
								
							
							
	1240c83e40  
						 
						
							
							
								
								
								set trust bits for CA certs  
							
							
							
						 
						
							2016-04-18 21:05:33 +05:30 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									deepak1556 
								
							 
						 
						
							
							
								
							
							
	e81cec4058  
						 
						
							
							
								
								
								app: api to import client certificate  
							
							
							
						 
						
							2016-04-18 10:54:43 +05:30 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	ae0d007c5e  
						 
						
							
							
								
								
								Do no load PDF library from DLL  
							
							... 
							
							
							
							We already have them compiled in. 
							
						 
						
							2016-04-14 17:15:20 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robo 
								
							 
						 
						
							
							
								
							
							
	cdc7b8d15e  
						 
						
							
							
								
								
								devtools: fix filesyatem api usage and use prefs to track filesystem paths  
							
							
							
						 
						
							2016-03-15 07:51:36 +05:30 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	cadd1969d9  
						 
						
							
							
								
								
								Fix compilation errors on Windows  
							
							
							
						 
						
							2016-03-10 17:06:23 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	e3af5de7d7  
						 
						
							
							
								
								
								Update pdf_to_emf_converter  
							
							
							
						 
						
							2016-03-10 17:06:23 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	f4ec369873  
						 
						
							
							
								
								
								More boring fixups  
							
							
							
						 
						
							2016-03-10 17:06:22 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	7b60ef6261  
						 
						
							
							
								
								
								SetIsDraftMode no longer a thing, see  https://groups.google.com/a/chromium.org/forum/m/#!topic/chromium-checkins/6qohfKmEYyg  
							
							
							
						 
						
							2016-03-10 17:06:22 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	e835111195  
						 
						
							
							
								
								
								More type fixups  
							
							
							
						 
						
							2016-03-10 17:06:22 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Paul Betts 
								
							 
						 
						
							
							
								
							
							
	a737baafbf  
						 
						
							
							
								
								
								We don't need Metro  
							
							
							
						 
						
							2016-03-10 17:06:22 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	d36b8bca86  
						 
						
							
							
								
								
								Fix compilation errors on Linux  
							
							
							
						 
						
							2016-03-10 17:06:22 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	044daee086  
						 
						
							
							
								
								
								Update printing code to latest  
							
							
							
						 
						
							2016-03-10 17:06:22 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	5fae63a2f5  
						 
						
							
							
								
								
								Fix compilation errors on OS X  
							
							
							
						 
						
							2016-03-10 17:06:21 +09:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Dongjoon Hyun 
								
							 
						 
						
							
							
								
							
							
	0c92d44077  
						 
						
							
							
								
								
								Fix typos in comments.  
							
							
							
						 
						
							2016-03-07 20:22:03 -08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	57da8908b2  
						 
						
							
							
								
								
								Use volume serial number as device id  
							
							
							
						 
						
							2016-01-12 23:17:07 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	8832d7b77b  
						 
						
							
							
								
								
								Import PepperFlashDRMHost class  
							
							
							
						 
						
							2016-01-12 22:17:24 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	da52017d82  
						 
						
							
							
								
								
								Revert "fix chrome app and user path conflicts"  
							
							... 
							
							
							
							This reverts commit 25aaafde45bd3ac7d9a82184f67b79874da73aa8. 
							
						 
						
							2016-01-11 10:30:17 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	c5238bb8f0  
						 
						
							
							
								
								
								Update brightray and libchromiumcontent with widevine support  
							
							
							
						 
						
							2015-12-30 11:45:39 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cheng Zhao 
								
							 
						 
						
							
							
								
							
							
	c76db0ba1d  
						 
						
							
							
								
								
								Fix coding styles  
							
							
							
						 
						
							2015-12-29 18:59:27 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Cyrille Lebeaupin 
								
							 
						 
						
							
							
								
							
							
	9d878ad6b2  
						 
						
							
							
								
								
								Add widevine third party  
							
							... 
							
							
							
							Add 2 new command options to use widevine:
- widevine-cdm-path: Path to widevine plugin
- widevine-cdm-version: Version of the widevine plugin 
							
						 
						
							2015-12-29 14:50:59 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robo 
								
							 
						 
						
							
							
								
							
							
	658accab94  
						 
						
							
							
								
								
								fix pointer usage  
							
							
							
						 
						
							2015-12-11 00:25:25 +05:30 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Robo 
								
							 
						 
						
							
							
								
							
							
	29f32c5ec7  
						 
						
							
							
								
								
								support filtering event with url regex  
							
							
							
						 
						
							2015-12-09 20:14:18 +05:30