38 lines
		
	
	
	
		
			910 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			910 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#include "core/base_integration.h"
 | 
						|
 | 
						|
#include "core/sandbox.h"
 | 
						|
#include "core/crash_reports.h"
 | 
						|
 | 
						|
namespace Core {
 | 
						|
 | 
						|
BaseIntegration::BaseIntegration(int argc, char *argv[])
 | 
						|
: Integration(argc, argv) {
 | 
						|
}
 | 
						|
 | 
						|
void BaseIntegration::enterFromEventLoop(FnMut<void()> &&method) {
 | 
						|
	Core::Sandbox::Instance().customEnterFromEventLoop(
 | 
						|
		std::move(method));
 | 
						|
}
 | 
						|
 | 
						|
void BaseIntegration::logMessage(const QString &message) {
 | 
						|
#ifdef DEBUG_LOG
 | 
						|
	DEBUG_LOG((message));
 | 
						|
#endif // DEBUG_LOG
 | 
						|
}
 | 
						|
 | 
						|
void BaseIntegration::logAssertionViolation(const QString &info) {
 | 
						|
#ifdef LOG
 | 
						|
	LOG(("Assertion Failed! ") + info);
 | 
						|
#endif // LOG
 | 
						|
 | 
						|
	CrashReports::SetAnnotation("Assertion", info);
 | 
						|
}
 | 
						|
 | 
						|
} // namespace Core
 |