| Index: chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/off_the_record_profile_io_data.cc b/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| index 89b57acf8b5f24badf53aca31b9668a07449ac47..ec3da325551f6949aa2939e481ddcd417f0958be 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| +++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| @@ -390,3 +390,9 @@ OffTheRecordProfileIOData::AcquireIsolatedMediaRequestContext(
|
| NOTREACHED();
|
| return NULL;
|
| }
|
| +
|
| +bool OffTheRecordProfileIOData::HaveAlreadySeenOrigin(
|
| + const url::Origin& origin) {
|
| + auto found = origins_seen_.insert(origin);
|
| + return found.second == false;
|
| +}
|
|
|