| Index: chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/DocumentTabModelSelector.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/DocumentTabModelSelector.java b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/DocumentTabModelSelector.java
|
| index a5b3b8bc1ca4de3ba2a0afdedd8dfd78a79ab4ae..e69d43c3710f6b0c89271b64b41b34c29ae1a925 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/DocumentTabModelSelector.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/document/DocumentTabModelSelector.java
|
| @@ -70,7 +70,7 @@ public class DocumentTabModelSelector extends TabModelSelectorBase implements Ta
|
| /**
|
| * TabModel that keeps track of incognito tabs. This may be null if no incognito tabs exist.
|
| */
|
| - private final OffTheRecordDocumentTabModel mIncognitoTabModel;
|
| + private final IncognitoDocumentTabModel mIncognitoTabModel;
|
|
|
| /**
|
| * If the TabModels haven't been initialized yet, prioritize the correct one to load the Tab.
|
| @@ -92,7 +92,7 @@ public class DocumentTabModelSelector extends TabModelSelectorBase implements Ta
|
| final Context context = ContextUtils.getApplicationContext();
|
| mRegularTabModel = new DocumentTabModelImpl(
|
| mActivityDelegate, mStorageDelegate, this, false, sPrioritizedTabId, context);
|
| - mIncognitoTabModel = new OffTheRecordDocumentTabModel(new IncognitoTabModelDelegate() {
|
| + mIncognitoTabModel = new IncognitoDocumentTabModel(new IncognitoTabModelDelegate() {
|
| @Override
|
| public TabModel createTabModel() {
|
| DocumentTabModel incognitoModel = new DocumentTabModelImpl(mActivityDelegate,
|
|
|