| Index: chrome/browser/profiles/incognito_helpers.cc
|
| diff --git a/chrome/browser/profiles/incognito_helpers.cc b/chrome/browser/profiles/incognito_helpers.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6155e9606d67ca9f167fd7568f6fa858b3b166c5
|
| --- /dev/null
|
| +++ b/chrome/browser/profiles/incognito_helpers.cc
|
| @@ -0,0 +1,21 @@
|
| +// 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 static_cast<Profile*>(context)->GetOriginalProfile();
|
| +}
|
| +
|
| +content::BrowserContext* GetBrowserContextOwnInstanceInIncognito(
|
| + content::BrowserContext* context) {
|
| + return context;
|
| +}
|
| +
|
| +} // namespace chrome
|
|
|