mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	- Mac: Remove Carbon interpose library (see http://crbug.com/157130). - Remove unused LOGSEVERITY_ERROR_REPORT value (see http://crbug.com/352378). - CefURLRequest in the render process will now always have the UR_FLAG_REPORT_LOAD_TIMING flag set (see http://crbug.com/376025#c15). - Change CefGeolocationHandler::OnRequestGeolocationPermission return value from void to boolean. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1753 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
		
			
				
	
	
		
			14 lines
		
	
	
		
			664 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			664 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| Index: WebNode.cpp
 | |
| ===================================================================
 | |
| --- WebNode.cpp	(revision 177271)
 | |
| +++ WebNode.cpp	(working copy)
 | |
| @@ -173,7 +173,7 @@
 | |
|  void WebNode::addEventListener(const WebString& eventType, WebDOMEventListener* listener, bool useCapture)
 | |
|  {
 | |
|      // Please do not add more eventTypes to this list without an API review.
 | |
| -    RELEASE_ASSERT(eventType == "mousedown");
 | |
| +    // RELEASE_ASSERT(eventType == "mousedown");
 | |
|  
 | |
|      EventListenerWrapper* listenerWrapper = listener->createEventListenerWrapper(eventType, useCapture, m_private.get());
 | |
|      // The listenerWrapper is only referenced by the actual Node.  Once it goes
 |