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

Unified Diff: content/shell/browser/shell_browser_main_parts.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/shell/browser/shell_browser_context.cc ('k') | content/shell/browser/shell_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/browser/shell_browser_main_parts.cc
diff --git a/content/shell/browser/shell_browser_main_parts.cc b/content/shell/browser/shell_browser_main_parts.cc
index 32dc6093cfb7b29da6694189d06fd76f295d283a..0c3307651becee6f400f048d7b223168c0d740ed 100644
--- a/content/shell/browser/shell_browser_main_parts.cc
+++ b/content/shell/browser/shell_browser_main_parts.cc
@@ -146,17 +146,17 @@ void ShellBrowserMainParts::PreMainMessageLoopRun() {
}
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree)) {
- quota::QuotaManager* quota_manager =
+ storage::QuotaManager* quota_manager =
BrowserContext::GetDefaultStoragePartition(browser_context())
->GetQuotaManager();
BrowserThread::PostTask(
BrowserThread::IO,
FROM_HERE,
- base::Bind(&quota::QuotaManager::SetTemporaryGlobalOverrideQuota,
+ base::Bind(&storage::QuotaManager::SetTemporaryGlobalOverrideQuota,
quota_manager,
kDefaultLayoutTestQuotaBytes *
- quota::QuotaManager::kPerHostTemporaryPortion,
- quota::QuotaCallback()));
+ storage::QuotaManager::kPerHostTemporaryPortion,
+ storage::QuotaCallback()));
#if defined(ENABLE_PLUGINS)
PluginService* plugin_service = PluginService::GetInstance();
plugin_service_filter_.reset(new ShellPluginServiceFilter);
« no previous file with comments | « content/shell/browser/shell_browser_context.cc ('k') | content/shell/browser/shell_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698