| Index: webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkStateParams.java
|
| diff --git a/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkStateParams.java b/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkStateParams.java
|
| deleted file mode 100644
|
| index d2d7025918011afad94d8cddae4f72d4f39eba0a..0000000000000000000000000000000000000000
|
| --- a/webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkStateParams.java
|
| +++ /dev/null
|
| @@ -1,46 +0,0 @@
|
| -// Copyright 2016 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.webapk.lib.client;
|
| -
|
| -/**
|
| - * Contains state about whether Chrome is running in the Minted APK runtime. If Chrome is running
|
| - * in the minted APK runtime, has enough information to determine whether a URL navigation should
|
| - * stay within the current minted APK app.
|
| - */
|
| -public class WebApkStateParams {
|
| - private boolean mUseMintedRuntime = false;
|
| - private String mPackageName = "";
|
| - private String mScopeUrl = "";
|
| -
|
| - public WebApkStateParams() {
|
| - }
|
| -
|
| - public WebApkStateParams(
|
| - boolean useMintedRuntime, String packageName, String scopeUrl) {
|
| - mUseMintedRuntime = useMintedRuntime;
|
| - mPackageName = packageName;
|
| - mScopeUrl = scopeUrl;
|
| - }
|
| -
|
| - public void setUseMintedRuntime(boolean useMintedRuntime) {
|
| - mUseMintedRuntime = useMintedRuntime;
|
| - }
|
| -
|
| - public void setMintedAPKPackageName(String packageName) {
|
| - mPackageName = packageName;
|
| - }
|
| -
|
| - public boolean useMintedRuntime() {
|
| - return mUseMintedRuntime;
|
| - }
|
| -
|
| - public String getMintedAPKPackageName() {
|
| - return mPackageName;
|
| - }
|
| -
|
| - public String getMintedAPKScopeUrl() {
|
| - return mScopeUrl;
|
| - }
|
| -}
|
|
|