summaryrefslogtreecommitdiff
path: root/main/src/ui/java/de/blinkt/openvpn/core/VariantConfig.java
blob: 5db8382c7495ea73e95d17270556f91b4c150cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2012-2020 Arne Schwabe
 * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
 */

package de.blinkt.openvpn.core;

import android.content.Context;
import android.content.Intent;

import de.blinkt.openvpn.activities.InternalWebView;

public class VariantConfig {
    /** Return the normal webview or internal webview depending what is available */
    static Intent getOpenUrlIntent(Context c) {
        return new Intent(c, InternalWebView.class);
    }
}