| 383 | } |
| 384 | |
| 385 | void AnimationClient::SetASContext(ASContext *_as_context) { |
| 386 | as_context = _as_context; |
| 387 | |
| 388 | as_funcs.layer_removed = as_context->RegisterExpectedFunction("void LayerRemoved(int id)", true); |
| 389 | |
| 390 | as_context->LoadExpectedFunctions(); |
| 391 | } |
| 392 | |
| 393 | void AnimationClient::SetCallbackString(const std::string &_callback_string) { |
| 394 | reader.SetCallbackString(_callback_string); |
nothing calls this directly
no test coverage detected