mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	- Update to Chromium revision 85305.
- Use the angle library for GL support (issue #136). - Add a workaround for the SyncRequestProxy deadlock problem (issue #192). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@233 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
		@@ -185,12 +185,14 @@ bool BrowserPersistentCookieStore::Backend::Load(
 | 
			
		||||
            smt.ColumnString(3),                            // value
 | 
			
		||||
            smt.ColumnString(1),                            // domain
 | 
			
		||||
            smt.ColumnString(4),                            // path
 | 
			
		||||
            std::string(),  // TODO(abarth): Persist mac_key
 | 
			
		||||
            std::string(),  // TODO(abarth): Persist mac_algorithm
 | 
			
		||||
            Time::FromInternalValue(smt.ColumnInt64(0)),    // creation_utc
 | 
			
		||||
            Time::FromInternalValue(smt.ColumnInt64(5)),    // expires_utc
 | 
			
		||||
            Time::FromInternalValue(smt.ColumnInt64(8)),    // last_access_utc
 | 
			
		||||
            smt.ColumnInt(6) != 0,                          // secure
 | 
			
		||||
            smt.ColumnInt(7) != 0,                          // httponly
 | 
			
		||||
            Time::FromInternalValue(smt.ColumnInt64(0)),    // creation_utc
 | 
			
		||||
            Time::FromInternalValue(smt.ColumnInt64(8)),    // last_access_utc
 | 
			
		||||
            true,                                           // has_expires
 | 
			
		||||
            Time::FromInternalValue(smt.ColumnInt64(5))));  // expires_utc
 | 
			
		||||
            true));                                         // has_
 | 
			
		||||
    DLOG_IF(WARNING,
 | 
			
		||||
            cc->CreationDate() > Time::Now()) << L"CreationDate too recent";
 | 
			
		||||
    cookies->push_back(cc.release());
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user