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

Unified Diff: web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java

Issue 1953543002: Rename WebAPK related classes to be of the format *WebApk*.java (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: web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java
diff --git a/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java b/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.java
deleted file mode 100644
index 314f420fe5b6d2070dbd27a27fbd754f586f4e55..0000000000000000000000000000000000000000
--- a/web_apks/minting_example/libs/client/org/chromium/minting/lib/client/MintingStateParams.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.minting.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 MintingStateParams {
- private boolean mUseMintedRuntime = false;
- private String mPackageName = "";
- private String mScopeUrl = "";
-
- public MintingStateParams() {
- }
-
- public MintingStateParams(
- 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