Index: content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java |
diff --git a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java |
index b66cc265cd5ac76739ee79c5a74c0c7347eac922..b3478d0ce96bf992bd963d3c47f405ef05f422d6 100644 |
--- a/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java |
+++ b/content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java |
@@ -190,7 +190,7 @@ import org.chromium.content_public.browser.WebContents; |
@CalledByNative |
private void didDeferAfterResponseStarted(String markup, String cssSelector, |
String enteringColor) { |
- if (mNavigationTransitionDelegate != null ) { |
+ if (mNavigationTransitionDelegate != null) { |
mNavigationTransitionDelegate.didDeferAfterResponseStarted(markup, |
cssSelector, enteringColor); |
} |
@@ -204,14 +204,14 @@ import org.chromium.content_public.browser.WebContents; |
@CalledByNative |
private void addEnteringStylesheetToTransition(String stylesheet) { |
- if (mNavigationTransitionDelegate != null ) { |
+ if (mNavigationTransitionDelegate != null) { |
mNavigationTransitionDelegate.addEnteringStylesheetToTransition(stylesheet); |
} |
} |
@CalledByNative |
private void didStartNavigationTransitionForFrame(long frameId) { |
- if (mNavigationTransitionDelegate != null ) { |
+ if (mNavigationTransitionDelegate != null) { |
mNavigationTransitionDelegate.didStartNavigationTransitionForFrame(frameId); |
} |
} |