Skip to content

Commit

Permalink
Fix missing namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsimantov committed Jan 17, 2024
1 parent ef8d823 commit 575f712
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions gma/integration_test/src/integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3040,26 +3040,29 @@ TEST_F(FirebaseGmaUmpTest, TestUmpCallbacksOnWrongInstance) {

LogDebug("RequestConsentInfoUpdate");
consent_info_->RequestConsentInfoUpdate(params).OnCompletion(
[](const Future<void>&) { LogDebug("RequestConsentInfoUpdate done"); });
[](const firebase::Future<void>&) {
LogDebug("RequestConsentInfoUpdate done");
});
LogDebug("LoadConsentForm");
consent_info_->LoadConsentForm().OnCompletion(
[](const Future<void>&) { LogDebug("LoadConsentForm done"); });
[](const firebase::Future<void>&) { LogDebug("LoadConsentForm done"); });
// In automated tests, only check RequestConsentInfoUpdate and LoadConsentForm
// as the rest may show UI.
if (ShouldRunUITests()) {
LogDebug("ShowConsentForm");
consent_info_->ShowConsentForm(app_framework::GetWindowController())
.OnCompletion(
[](const Future<void>&) { LogDebug("ShowConsentForm done"); });
.OnCompletion([](const firebase::Future<void>&) {
LogDebug("ShowConsentForm done");
});
LogDebug("LoadAndShowConsentFormIfRequired");
consent_info_
->LoadAndShowConsentFormIfRequired(app_framework::GetWindowController())
.OnCompletion([](const Future<void>&) {
.OnCompletion([](const firebase::Future<void>&) {
LogDebug("LoadAndShowConsentFormIfRequired done");
});
LogDebug("ShowPrivacyOptionsForm");
consent_info_->ShowPrivacyOptionsForm(app_framework::GetWindowController())
.OnCompletion([](const Future<void>&) {
.OnCompletion([](const firebase::Future<void>&) {
LogDebug("ShowPrivacyOptionsForm done");
});
}
Expand Down

0 comments on commit 575f712

Please sign in to comment.