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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappInfo.java

Issue 2335843002: Remove the logic of fetching metadata when launching WebAPKs. (Closed)
Patch Set: Update comment. Created 4 years, 3 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: chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappInfo.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappInfo.java b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappInfo.java
index a13844f2e0ceeb6311cecaa0162cb7b6a7a5f134..4b2a9010d05eb2262971a4c9f67b37a5cf5b7b6e 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappInfo.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebappInfo.java
@@ -233,10 +233,6 @@ public class WebappInfo {
return mOrientation;
}
- public void updateOrientation(int orientation) {
- mOrientation = orientation;
- }
-
public int source() {
return mSource;
}
@@ -250,10 +246,6 @@ public class WebappInfo {
return mThemeColor;
}
- public void updateThemeColor(long themeColor) {
- mThemeColor = themeColor;
- }
-
/**
* Returns whether the theme color specified in the Intent is valid.
* A theme color isn't valid if its value is ShortcutHelper.MANIFEST_COLOR_INVALID_OR_MISSING;

Powered by Google App Engine
This is Rietveld 408576698