| Index: blimp/engine/app/blimp_content_browser_client.cc
|
| diff --git a/blimp/engine/app/blimp_content_browser_client.cc b/blimp/engine/app/blimp_content_browser_client.cc
|
| index bc2068f7c5c67e51462e5fc6f576d38470858470..29c5a9e588405325b5e072a32d837dadb4bb6223 100644
|
| --- a/blimp/engine/app/blimp_content_browser_client.cc
|
| +++ b/blimp/engine/app/blimp_content_browser_client.cc
|
| @@ -11,6 +11,7 @@
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/common/service_names.h"
|
| #include "services/service_manager/public/cpp/interface_registry.h"
|
| +#include "storage/browser/quota/quota_settings.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
|
|
| namespace blimp {
|
| @@ -69,5 +70,17 @@ BlimpContentBrowserClient::GetServiceManifestOverlay(
|
| return base::JSONReader::Read(manifest_contents);
|
| }
|
|
|
| +void BlimpContentBrowserClient::GetQuotaSettings(
|
| + content::BrowserContext* context,
|
| + const base::FilePath& partition_path,
|
| + bool is_incognito,
|
| + const storage::OptionalQuotaSettingsCallback& callback) {
|
| + content::BrowserThread::PostTaskAndReplyWithResult(
|
| + content::BrowserThread::FILE, FROM_HERE,
|
| + base::Bind(&storage::CalculateNominalDynamicSettings, partition_path,
|
| + is_incognito),
|
| + callback);
|
| +}
|
| +
|
| } // namespace engine
|
| } // namespace blimp
|
|
|