summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormnaganov <mnaganov@chromium.org>2015-03-05 09:53:07 -0800
committerCommit bot <commit-bot@chromium.org>2015-03-05 17:54:36 +0000
commit9032b8af69c8649eb072ed7afc0b13243f782d81 (patch)
tree96f210ae965a22e1e5c31bbb0d9d0719da839118
parent1a2e70ee1076dbb89bb90eb198e5878aabe6ec12 (diff)
downloadchromium_src-9032b8af69c8649eb072ed7afc0b13243f782d81.zip
chromium_src-9032b8af69c8649eb072ed7afc0b13243f782d81.tar.gz
chromium_src-9032b8af69c8649eb072ed7afc0b13243f782d81.tar.bz2
Cleanup WebContentsDelegateAndroid after https://codereview.chromium.org/970883002/
After removing the usage in the downstream code it's possible to remove the constant definition. BUG=458569 Review URL: https://codereview.chromium.org/981933002 Cr-Commit-Position: refs/heads/master@{#319280}
-rw-r--r--components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
index 1c774f0..b122f98 100644
--- a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
+++ b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java
@@ -8,7 +8,6 @@ import android.view.KeyEvent;
import org.chromium.base.CalledByNative;
import org.chromium.base.JNINamespace;
-import org.chromium.content_public.browser.InvalidateTypes;
import org.chromium.content_public.browser.WebContents;
/**
@@ -26,9 +25,6 @@ public class WebContentsDelegateAndroid {
// Equivalent of WebCore::WebConsoleMessage::LevelError.
public static final int LOG_LEVEL_ERROR = 3;
- // TODO(mnaganov): Remove after getting rid of downstream usages.
- public static final int INVALIDATE_TYPE_TAB = InvalidateTypes.TAB;
-
// The most recent load progress callback received from WebContents, as a percentage.
// Initialize to 100 to indicate that we're not in a loading state.
private int mMostRecentProgress = 100;