aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/events/WebLaunchEvent.kt
blob: e32c01ae288e737e2eb1826dc64b98bb3d7418dc (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.pitchedapps.frost.events

import android.content.Context
import com.pitchedapps.frost.WebOverlayActivity

/**
 * Created by Allan Wang on 2017-06-01.
 */
class WebLaunchEvent(val url: String) {
    fun execute(context: Context) = WebOverlayActivity.newInstance(context, url)
}