| Index: content/shell/browser/layout_test/layout_test_content_browser_client.cc | 
| diff --git a/content/shell/browser/layout_test/layout_test_content_browser_client.cc b/content/shell/browser/layout_test/layout_test_content_browser_client.cc | 
| index 3b25ecdfb4454d3c340439efcc88621c22bcd668..b8a143cc98f90a84f8377255d9afcb4628bff195 100644 | 
| --- a/content/shell/browser/layout_test/layout_test_content_browser_client.cc | 
| +++ b/content/shell/browser/layout_test/layout_test_content_browser_client.cc | 
| @@ -128,6 +128,14 @@ BrowserMainParts* LayoutTestContentBrowserClient::CreateBrowserMainParts( | 
| return shell_browser_main_parts(); | 
| } | 
|  | 
| +void LayoutTestContentBrowserClient::GetQuotaSettings( | 
| +    BrowserContext* context, | 
| +    const base::FilePath& partition_path, | 
| +    bool is_incognito, | 
| +    const storage::OptionalQuotaSettingsCallback& callback) { | 
| +  callback.Run(storage::GetHardCodedSettings(5 * 1024 * 1024)); | 
| +} | 
| + | 
| PlatformNotificationService* | 
| LayoutTestContentBrowserClient::GetPlatformNotificationService() { | 
| return layout_test_notification_manager_.get(); | 
|  |