Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1266)

Unified Diff: webapk/libs/client/src/org/chromium/webapk/lib/client/WebApkStateParams.java

Issue 1965583002: Move //webapk to //chrome/android/webapk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698