Flutter Windows Embedder
direct_manipulation.cc File Reference

Go to the source code of this file.

Namespaces

 flutter
 

Macros

#define RETURN_IF_FAILED(operation)
 
#define WARN_IF_FAILED(operation)
 

Macro Definition Documentation

◆ RETURN_IF_FAILED

#define RETURN_IF_FAILED (   operation)
Value:
if (FAILED(operation)) { \
FML_LOG(ERROR) << #operation << " failed"; \
manager_ = nullptr; \
updateManager_ = nullptr; \
viewport_ = nullptr; \
return -1; \
}

Definition at line 13 of file direct_manipulation.cc.

◆ WARN_IF_FAILED

#define WARN_IF_FAILED (   operation)
Value:
if (FAILED(operation)) { \
FML_LOG(ERROR) << #operation << " failed"; \
}

Definition at line 22 of file direct_manipulation.cc.