use of org.chromium.chrome.browser.tabmodel.document.StorageDelegate in project AndroidChromium by JackyAndroid.
the class ChromeApplication method getDocumentTabModelSelector.
/**
* Returns the Singleton instance of the DocumentTabModelSelector.
* TODO(dfalcantara): Find a better place for this once we differentiate between activity and
* application-level TabModelSelectors.
* @return The DocumentTabModelSelector for the application.
*/
@SuppressFBWarnings("LI_LAZY_INIT_STATIC")
public static DocumentTabModelSelector getDocumentTabModelSelector() {
ThreadUtils.assertOnUiThread();
if (sDocumentTabModelSelector == null) {
ActivityDelegateImpl activityDelegate = new ActivityDelegateImpl(DocumentActivity.class, IncognitoDocumentActivity.class);
sDocumentTabModelSelector = new DocumentTabModelSelector(activityDelegate, new StorageDelegate(), new TabDelegate(false), new TabDelegate(true));
}
return sDocumentTabModelSelector;
}
Aggregations