Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: blimp/engine/app/blimp_content_browser_client.cc

Issue 2592793002: Revert of Change how the quota system computes the total poolsize for temporary storage (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « blimp/engine/app/blimp_content_browser_client.h ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/json/json_reader.h" 5 #include "base/json/json_reader.h"
6 #include "blimp/engine/app/blimp_browser_main_parts.h" 6 #include "blimp/engine/app/blimp_browser_main_parts.h"
7 #include "blimp/engine/app/blimp_content_browser_client.h" 7 #include "blimp/engine/app/blimp_content_browser_client.h"
8 #include "blimp/engine/app/settings_manager.h" 8 #include "blimp/engine/app/settings_manager.h"
9 #include "blimp/engine/grit/blimp_browser_resources.h" 9 #include "blimp/engine/grit/blimp_browser_resources.h"
10 #include "blimp/engine/mojo/blob_channel_service.h" 10 #include "blimp/engine/mojo/blob_channel_service.h"
11 #include "content/public/browser/browser_context.h"
12 #include "content/public/browser/browser_thread.h" 11 #include "content/public/browser/browser_thread.h"
13 #include "content/public/browser/storage_partition.h"
14 #include "content/public/common/service_names.mojom.h" 12 #include "content/public/common/service_names.mojom.h"
15 #include "services/service_manager/public/cpp/interface_registry.h" 13 #include "services/service_manager/public/cpp/interface_registry.h"
16 #include "storage/browser/quota/quota_settings.h"
17 #include "ui/base/resource/resource_bundle.h" 14 #include "ui/base/resource/resource_bundle.h"
18 15
19 namespace blimp { 16 namespace blimp {
20 namespace engine { 17 namespace engine {
21 18
22 BlimpContentBrowserClient::BlimpContentBrowserClient() {} 19 BlimpContentBrowserClient::BlimpContentBrowserClient() {}
23 20
24 BlimpContentBrowserClient::~BlimpContentBrowserClient() {} 21 BlimpContentBrowserClient::~BlimpContentBrowserClient() {}
25 22
26 content::BrowserMainParts* BlimpContentBrowserClient::CreateBrowserMainParts( 23 content::BrowserMainParts* BlimpContentBrowserClient::CreateBrowserMainParts(
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 62 }
66 if (id == -1) { 63 if (id == -1) {
67 return nullptr; 64 return nullptr;
68 } 65 }
69 66
70 base::StringPiece manifest_contents = 67 base::StringPiece manifest_contents =
71 rb.GetRawDataResourceForScale(id, ui::ScaleFactor::SCALE_FACTOR_NONE); 68 rb.GetRawDataResourceForScale(id, ui::ScaleFactor::SCALE_FACTOR_NONE);
72 return base::JSONReader::Read(manifest_contents); 69 return base::JSONReader::Read(manifest_contents);
73 } 70 }
74 71
75 void BlimpContentBrowserClient::GetQuotaSettings(
76 content::BrowserContext* context,
77 content::StoragePartition* partition,
78 const storage::OptionalQuotaSettingsCallback& callback) {
79 content::BrowserThread::PostTaskAndReplyWithResult(
80 content::BrowserThread::FILE, FROM_HERE,
81 base::Bind(&storage::CalculateNominalDynamicSettings,
82 partition->GetPath(), context->IsOffTheRecord()),
83 callback);
84 }
85
86 } // namespace engine 72 } // namespace engine
87 } // namespace blimp 73 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/engine/app/blimp_content_browser_client.h ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698