blob: a319237928b892e8c87ef8ff2bcd2a4f9be5ac8a [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
namespace chrome {
content::BrowserContext* GetBrowserContextRedirectedInIncognito(
content::BrowserContext* context) {
return Profile::FromBrowserContext(context)->GetOriginalProfile();
}
const content::BrowserContext* GetBrowserContextRedirectedInIncognito(
const content::BrowserContext* context) {
const Profile* profile = Profile::FromBrowserContext(
const_cast<content::BrowserContext*>(context));
return profile->GetOriginalProfile();
}
content::BrowserContext* GetBrowserContextOwnInstanceInIncognito(
content::BrowserContext* context) {
return context;
}
} // namespace chrome