| Index: chrome/browser/geolocation/geolocation_permission_context_unittest.cc
|
| diff --git a/chrome/browser/geolocation/geolocation_permission_context_unittest.cc b/chrome/browser/geolocation/geolocation_permission_context_unittest.cc
|
| index e813b9b5916459d4811971aca3b3ee40263d1e28..a8aca90a67947e9cc0cec1eff28d1310d5d92708 100644
|
| --- a/chrome/browser/geolocation/geolocation_permission_context_unittest.cc
|
| +++ b/chrome/browser/geolocation/geolocation_permission_context_unittest.cc
|
| @@ -912,14 +912,14 @@ TEST_F(GeolocationPermissionContextTests, SearchGeolocationInIncognito) {
|
|
|
| // A DSE setting of ALLOW should not flow through to incognito.
|
| geo_service->SetDSEGeolocationSetting(true);
|
| - ASSERT_EQ(blink::mojom::PermissionStatus::ASK,
|
| + ASSERT_EQ(CONTENT_SETTING_ASK,
|
| PermissionManager::Get(otr_profile)
|
| ->GetPermissionStatus(CONTENT_SETTINGS_TYPE_GEOLOCATION,
|
| requesting_frame, requesting_frame));
|
|
|
| // Changing the setting to BLOCK should flow through to incognito.
|
| geo_service->SetDSEGeolocationSetting(false);
|
| - ASSERT_EQ(blink::mojom::PermissionStatus::DENIED,
|
| + ASSERT_EQ(CONTENT_SETTING_BLOCK,
|
| PermissionManager::Get(otr_profile)
|
| ->GetPermissionStatus(CONTENT_SETTINGS_TYPE_GEOLOCATION,
|
| requesting_frame, requesting_frame));
|
|
|