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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/AudioFocusDelegate.java

Issue 2548013002: Remove redundant field initialization in Java code. (Closed)
Patch Set: rebase Created 4 years 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: content/public/android/java/src/org/chromium/content/browser/AudioFocusDelegate.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/AudioFocusDelegate.java b/content/public/android/java/src/org/chromium/content/browser/AudioFocusDelegate.java
index b8df64ab9125fadb3785683cd28f656114346ad7..ad03a3abae5f804de63dff0863f594c167fc8e6c 100644
--- a/content/public/android/java/src/org/chromium/content/browser/AudioFocusDelegate.java
+++ b/content/public/android/java/src/org/chromium/content/browser/AudioFocusDelegate.java
@@ -29,7 +29,7 @@ public class AudioFocusDelegate implements AudioManager.OnAudioFocusChangeListen
private Context mContext;
private int mFocusType;
- private boolean mIsDucking = false;
+ private boolean mIsDucking;
// Native pointer to C++ content::AudioFocusDelegateAndroid.
// It will be set to 0 when the native AudioFocusDelegateAndroid object is destroyed.

Powered by Google App Engine
This is Rietveld 408576698