| Index: android_webview/browser/aw_content_browser_client.cc
 | 
| diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc
 | 
| index f9a53509aeb9a6051c6bc23e38b69ebe2cda71bb..b87bb97be5e3e3293d9ebbbfed719d103347de7f 100644
 | 
| --- a/android_webview/browser/aw_content_browser_client.cc
 | 
| +++ b/android_webview/browser/aw_content_browser_client.cc
 | 
| @@ -47,7 +47,6 @@
 | 
|  #include "content/public/browser/render_frame_host.h"
 | 
|  #include "content/public/browser/render_process_host.h"
 | 
|  #include "content/public/browser/render_view_host.h"
 | 
| -#include "content/public/browser/storage_partition.h"
 | 
|  #include "content/public/browser/web_contents.h"
 | 
|  #include "content/public/common/content_switches.h"
 | 
|  #include "content/public/common/service_names.mojom.h"
 | 
| @@ -59,7 +58,6 @@
 | 
|  #include "net/ssl/ssl_cert_request_info.h"
 | 
|  #include "net/ssl/ssl_info.h"
 | 
|  #include "services/service_manager/public/cpp/interface_registry.h"
 | 
| -#include "storage/browser/quota/quota_settings.h"
 | 
|  #include "ui/base/resource/resource_bundle.h"
 | 
|  #include "ui/base/resource/resource_bundle_android.h"
 | 
|  #include "ui/resources/grit/ui_resources.h"
 | 
| @@ -359,17 +357,6 @@ AwContentBrowserClient::CreateQuotaPermissionContext() {
 | 
|    return new AwQuotaPermissionContext;
 | 
|  }
 | 
|  
 | 
| -void AwContentBrowserClient::GetQuotaSettings(
 | 
| -    content::BrowserContext* context,
 | 
| -    content::StoragePartition* partition,
 | 
| -    const storage::OptionalQuotaSettingsCallback& callback) {
 | 
| -  content::BrowserThread::PostTaskAndReplyWithResult(
 | 
| -      content::BrowserThread::FILE, FROM_HERE,
 | 
| -      base::Bind(&storage::CalculateNominalDynamicSettings,
 | 
| -                 partition->GetPath(), context->IsOffTheRecord()),
 | 
| -      callback);
 | 
| -}
 | 
| -
 | 
|  void AwContentBrowserClient::AllowCertificateError(
 | 
|      content::WebContents* web_contents,
 | 
|      int cert_error,
 | 
| 
 |