| 419 | } |
| 420 | |
| 421 | void FacebookWidgetJavaScriptAPI::requestStatus(const QString& callback) |
| 422 | { |
| 423 | FacebookStatus status; |
| 424 | if (_client->status_get(&status)) |
| 425 | { |
| 426 | // call back the client |
| 427 | _jsonFormattedResult = status.toJsonString(); |
| 428 | _page->evaluateJavaScript(QString_NT("%1(BumpTopNative.internal_getJsonFormattedStringData());") |
| 429 | .arg(callback)); |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | void FacebookWidgetJavaScriptAPI::requestUploadPhotos(const QString& aid, const QStringList& fileUrlsList, const QString& callback) |
| 434 | { |
nothing calls this directly
no test coverage detected