| Index: chrome/browser/profiles/off_the_record_profile_impl.cc
|
| diff --git a/chrome/browser/profiles/off_the_record_profile_impl.cc b/chrome/browser/profiles/off_the_record_profile_impl.cc
|
| index 871769eaf60bdd3ab9c63e7b1214ced3ad01bdd7..e61f0ac28de5131e03843ec884168a649af8d455 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_impl.cc
|
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.cc
|
| @@ -97,14 +97,14 @@ namespace {
|
|
|
| void NotifyOTRProfileCreatedOnIOThread(void* original_profile,
|
| void* otr_profile) {
|
| - ExtensionWebRequestEventRouter::GetInstance()->OnOTRBrowserContextCreated(
|
| - original_profile, otr_profile);
|
| + extensions::ExtensionWebRequestEventRouter::GetInstance()
|
| + ->OnOTRBrowserContextCreated(original_profile, otr_profile);
|
| }
|
|
|
| void NotifyOTRProfileDestroyedOnIOThread(void* original_profile,
|
| void* otr_profile) {
|
| - ExtensionWebRequestEventRouter::GetInstance()->OnOTRBrowserContextDestroyed(
|
| - original_profile, otr_profile);
|
| + extensions::ExtensionWebRequestEventRouter::GetInstance()
|
| + ->OnOTRBrowserContextDestroyed(original_profile, otr_profile);
|
| }
|
|
|
| } // namespace
|
|
|