mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Update to Chromium revision 208345
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1314 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
		| @@ -331,6 +331,7 @@ class CefBrowserHostImpl : public CefBrowserHost, | ||||
|       const content::MediaResponseCallback& callback) OVERRIDE; | ||||
|  | ||||
|   // content::WebContentsObserver methods. | ||||
|   using content::WebContentsObserver::BeforeUnloadFired; | ||||
|   virtual void RenderViewCreated( | ||||
|       content::RenderViewHost* render_view_host) OVERRIDE; | ||||
|   virtual void RenderViewDeleted( | ||||
|   | ||||
| @@ -83,16 +83,20 @@ void CefTestSuite::Initialize() { | ||||
|   // The below code is copied from base/test/test_suite.cc to avoid calling | ||||
|   // RegisterMockCrApp() on Mac. | ||||
|  | ||||
|   // Initialize logging. | ||||
|   base::FilePath exe; | ||||
|   PathService::Get(base::FILE_EXE, &exe); | ||||
|   base::FilePath log_filename = exe.ReplaceExtension(FILE_PATH_LITERAL("log")); | ||||
|   logging::InitLogging( | ||||
|                        log_filename.value().c_str(), | ||||
|                        logging::LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG, | ||||
|                        logging::LOCK_LOG_FILE, | ||||
|                        logging::DELETE_OLD_LOG_FILE, | ||||
|                        logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); | ||||
|    | ||||
|   // Initialize logging. | ||||
|   logging::LoggingSettings log_settings; | ||||
|   log_settings.log_file = | ||||
|       exe.ReplaceExtension(FILE_PATH_LITERAL("log")).value().c_str(); | ||||
|   log_settings.logging_dest = logging::LOG_TO_ALL; | ||||
|   log_settings.lock_log = logging::LOCK_LOG_FILE; | ||||
|   log_settings.delete_old = logging::DELETE_OLD_LOG_FILE; | ||||
|   log_settings.dcheck_state = | ||||
|       logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS; | ||||
|   logging::InitLogging(log_settings); | ||||
|  | ||||
|   // We want process and thread IDs because we may have multiple processes. | ||||
|   // Note: temporarily enabled timestamps in an effort to catch bug 6361. | ||||
|   logging::SetLogItems(true, true, true, true); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user