| 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 04c3745c6e3400957827683dad656bdd588c78b5..e888b4e2920b9fa9a17a18f49d89b06c84a53093 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
 | 
| @@ -463,6 +463,11 @@ import java.util.UUID;
 | 
|          callback.onFinishGetBitmap(bitmap, response);
 | 
|      }
 | 
|  
 | 
| +    @Override
 | 
| +    public void reloadLoFiImages() {
 | 
| +        nativeReloadLoFiImages(mNativeWebContentsAndroid);
 | 
| +    }
 | 
| +
 | 
|      // This is static to avoid exposing a public destroy method on the native side of this class.
 | 
|      private static native void nativeDestroyWebContents(long webContentsAndroidPtr);
 | 
|  
 | 
| @@ -522,4 +527,5 @@ import java.util.UUID;
 | 
|              ContentBitmapCallback callback, Bitmap.Config config, float scale,
 | 
|              float x, float y, float width, float height);
 | 
|      private native void nativeOnContextMenuClosed(long nativeWebContentsAndroid);
 | 
| +    private native void nativeReloadLoFiImages(long nativeWebContentsAndroid);
 | 
|  }
 | 
| 
 |