blob: 56983e203014c66e802f5194cbe6cc2b423d6f9a [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.android_webview;
/**
* Contains command line switches that are specific to Android WebView.
*/
public abstract class AwSwitches {
// Experimental mode to run renderers in a sandbox, disables kSingleProcess,
// enables kInProcessGPU and sets kRendererProcessLimit to 1.
// Native switch kWebViewSandboxedRenderer.
public static final String WEBVIEW_SANDBOXED_RENDERER = "webview-sandboxed-renderer";
// Enables safebrowsing functionality in webview.
// Native switch kWebViewEnableSafeBrowsingSupport.
public static final String WEBVIEW_ENABLE_SAFEBROWSING_SUPPORT =
"webview-enable-safebrowsing-support";
private AwSwitches() {}
}