aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-01-24 20:02:12 -0800
committerAllan Wang <me@allanwang.ca>2021-01-24 20:02:12 -0800
commit2c85dae785b67241ef72500ac3c43fdff86bbad0 (patch)
treeaed233a587838d42caccdd771a52a1f4471d8092 /app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt
parent4c2c8a9ce4872e8bbb2a55c8b527e4f7b22ef633 (diff)
downloadfrost-2c85dae785b67241ef72500ac3c43fdff86bbad0.tar.gz
frost-2c85dae785b67241ef72500ac3c43fdff86bbad0.tar.bz2
frost-2c85dae785b67241ef72500ac3c43fdff86bbad0.zip
Revert "Add option to log out for messenger"
This reverts commit 4c2c8a9ce4872e8bbb2a55c8b527e4f7b22ef633.
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt b/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt
index 887d17f0..ecd8c093 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/views/FrostWebView.kt
@@ -29,7 +29,6 @@ import ca.allanwang.kau.utils.launchMain
import com.pitchedapps.frost.contracts.FrostContentContainer
import com.pitchedapps.frost.contracts.FrostContentCore
import com.pitchedapps.frost.contracts.FrostContentParent
-import com.pitchedapps.frost.contracts.onTabLongClicked
import com.pitchedapps.frost.db.CookieDao
import com.pitchedapps.frost.db.currentCookie
import com.pitchedapps.frost.facebook.FB_HOME_URL
@@ -197,10 +196,6 @@ class FrostWebView @JvmOverloads constructor(
private fun smoothScrollBy(y: Int) = smoothScrollTo(max(0, scrollY + y))
- override fun onTabLongClicked() {
- onTabLongClicked(context, prefs, fbCookie, cookieDao)
- }
-
override var active: Boolean = true
set(value) {
if (field == value) return