Home | History | Annotate | Download | only in browser

Lines Matching refs:mCurrentState

243     protected PageState mCurrentState;
342 mCurrentState = new PageState(mContext,
409 if (mCurrentState.mSecurityState == SecurityState.SECURITY_STATE_SECURE) {
413 mCurrentState.mSecurityState = SecurityState.SECURITY_STATE_MIXED;
663 mCurrentState.mUrl = view.getUrl();
664 if (mCurrentState.mUrl == null) {
665 mCurrentState.mUrl = "";
667 mCurrentState.mOriginalUrl = view.getOriginalUrl();
668 mCurrentState.mTitle = view.getTitle();
669 mCurrentState.mFavicon = view.getFavicon();
670 if (!URLUtil.isHttpsUrl(mCurrentState.mUrl)) {
673 mCurrentState.mSecurityState = SecurityState.SECURITY_STATE_NOT_SECURE;
674 mCurrentState.mSslCertificateError = null;
676 mCurrentState.mIncognito = view.isPrivateBrowsingEnabled();
807 mCurrentState.mTitle = title;
813 mCurrentState.mFavicon = icon;
1158 mCurrentState = new PageState(mContext, w != null
1282 mCurrentState = new PageState(mContext, false);
1309 loadUrl(mCurrentState.mOriginalUrl, null);
1560 return mCurrentState.mIncognito;
1620 return UrlUtils.filteredUrl(mCurrentState.mUrl);
1624 if (mCurrentState.mOriginalUrl == null) {
1627 return UrlUtils.filteredUrl(mCurrentState.mOriginalUrl);
1634 if (mCurrentState.mTitle == null && mInPageLoad) {
1637 return mCurrentState.mTitle;
1644 if (mCurrentState.mFavicon != null) {
1645 return mCurrentState.mFavicon;
1651 return mCurrentState.mIsBookmarkedSite;
1675 mCurrentState.mSecurityState = securityState;
1676 mCurrentState.mSslCertificateError = null;
1684 return mCurrentState.mSecurityState;
1693 return mCurrentState.mSslCertificateError;
1721 if (TextUtils.isEmpty(mCurrentState.mUrl)) {
1729 + mCurrentState.mUrl);
1733 mSavedState.putString(CURRURL, mCurrentState.mUrl);
1734 mSavedState.putString(CURRTITLE, mCurrentState.mTitle);
1766 mCurrentState = new PageState(mContext, incognito, url, null);
1767 mCurrentState.mTitle = title;
1793 if (mCurrentState.mUrl.equals(url)) {
1794 mCurrentState.mIsBookmarkedSite = isBookmark;
1830 values.put(Snapshots.TITLE, mCurrentState.mTitle);
1831 values.put(Snapshots.URL, mCurrentState.mUrl);
1899 mCurrentState = new PageState(mContext, false, url, null);
2038 if (error.getUrl().equals(mCurrentState.mUrl)) {
2041 mCurrentState.mSslCertificateError = error;