Home | History | Annotate | Download | only in browser

Lines Matching defs:mCurrentState

241     protected PageState mCurrentState;
340 mCurrentState = new PageState(mContext,
406 if (mCurrentState.mSecurityState == SecurityState.SECURITY_STATE_SECURE) {
410 mCurrentState.mSecurityState = SecurityState.SECURITY_STATE_MIXED;
660 mCurrentState.mUrl = view.getUrl();
661 if (mCurrentState.mUrl == null) {
662 mCurrentState.mUrl = "";
664 mCurrentState.mOriginalUrl = view.getOriginalUrl();
665 mCurrentState.mTitle = view.getTitle();
666 mCurrentState.mFavicon = view.getFavicon();
667 if (!URLUtil.isHttpsUrl(mCurrentState.mUrl)) {
670 mCurrentState.mSecurityState = SecurityState.SECURITY_STATE_NOT_SECURE;
671 mCurrentState.mSslCertificateError = null;
673 mCurrentState.mIncognito = view.isPrivateBrowsingEnabled();
804 mCurrentState.mTitle = title;
810 mCurrentState.mFavicon = icon;
1155 mCurrentState = new PageState(mContext, w != null
1279 mCurrentState = new PageState(mContext, false);
1304 loadUrl(mCurrentState.mOriginalUrl, null);
1552 return mCurrentState.mIncognito;
1612 return UrlUtils.filteredUrl(mCurrentState.mUrl);
1616 if (mCurrentState.mOriginalUrl == null) {
1619 return UrlUtils.filteredUrl(mCurrentState.mOriginalUrl);
1626 if (mCurrentState.mTitle == null && mInPageLoad) {
1629 return mCurrentState.mTitle;
1636 if (mCurrentState.mFavicon != null) {
1637 return mCurrentState.mFavicon;
1643 return mCurrentState.mIsBookmarkedSite;
1667 mCurrentState.mSecurityState = securityState;
1668 mCurrentState.mSslCertificateError = null;
1676 return mCurrentState.mSecurityState;
1685 return mCurrentState.mSslCertificateError;
1713 if (TextUtils.isEmpty(mCurrentState.mUrl)) {
1721 + mCurrentState.mUrl);
1725 mSavedState.putString(CURRURL, mCurrentState.mUrl);
1726 mSavedState.putString(CURRTITLE, mCurrentState.mTitle);
1758 mCurrentState = new PageState(mContext, incognito, url, null);
1759 mCurrentState.mTitle = title;
1785 if (mCurrentState.mUrl.equals(url)) {
1786 mCurrentState.mIsBookmarkedSite = isBookmark;
1822 values.put(Snapshots.TITLE, mCurrentState.mTitle);
1823 values.put(Snapshots.URL, mCurrentState.mUrl);
1891 mCurrentState = new PageState(mContext, false, url, null);
2026 if (error.getUrl().equals(mCurrentState.mUrl)) {
2029 mCurrentState.mSslCertificateError = error;