Commit 8ddad104 authored by Victor Costan's avatar Victor Costan Committed by Commit Bot

Quota: Create //content/browser/quota/ for browser-side quota code.

The browser-side quota implementation currently lives in
//content/browser/quota_dispatcher_host.{cc,h}. This CL moves it in a
separate directory, to match the rest of the storage features.

The code is intentionally left as-is, to make the CL easy to review.

Bug: 1016065, 1030901
Change-Id: I7d5252bd14527d693611d42a564f19e152485862
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2095562
Commit-Queue: Victor Costan <pwnall@chromium.org>
Commit-Queue: John Abd-El-Malek <jam@chromium.org>
Auto-Submit: Victor Costan <pwnall@chromium.org>
Reviewed-by: default avatarJohn Abd-El-Malek <jam@chromium.org>
Cr-Commit-Position: refs/heads/master@{#748438}
parent 5c315d56
......@@ -1322,8 +1322,8 @@ jumbo_source_set("browser") {
"push_messaging/push_messaging_manager.h",
"push_messaging/push_messaging_router.cc",
"push_messaging/push_messaging_router.h",
"quota_dispatcher_host.cc",
"quota_dispatcher_host.h",
"quota/quota_dispatcher_host.cc",
"quota/quota_dispatcher_host.h",
"renderer_host/agent_metrics_collector.cc",
"renderer_host/agent_metrics_collector.h",
"renderer_host/code_cache_host_impl.cc",
......
file://storage/browser/quota/OWNERS
# TEAM: storage-dev@chromium.org
# COMPONENT: Blink>Storage>Quota
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/quota_dispatcher_host.h"
#include "content/browser/quota/quota_dispatcher_host.h"
#include <stdint.h>
......
......@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_QUOTA_DISPATCHER_HOST_H_
#define CONTENT_BROWSER_QUOTA_DISPATCHER_HOST_H_
#ifndef CONTENT_BROWSER_QUOTA_QUOTA_DISPATCHER_HOST_H_
#define CONTENT_BROWSER_QUOTA_QUOTA_DISPATCHER_HOST_H_
#include "base/macros.h"
#include "content/public/browser/quota_permission_context.h"
......@@ -92,4 +92,4 @@ class QuotaDispatcherHost : public blink::mojom::QuotaDispatcherHost {
} // namespace content
#endif // CONTENT_BROWSER_QUOTA_DISPATCHER_HOST_H_
#endif // CONTENT_BROWSER_QUOTA_QUOTA_DISPATCHER_HOST_H_
......@@ -117,7 +117,7 @@
#include "content/browser/permissions/permission_service_context.h"
#include "content/browser/permissions/permission_service_impl.h"
#include "content/browser/push_messaging/push_messaging_manager.h"
#include "content/browser/quota_dispatcher_host.h"
#include "content/browser/quota/quota_dispatcher_host.h"
#include "content/browser/renderer_host/agent_metrics_collector.h"
#include "content/browser/renderer_host/code_cache_host_impl.h"
#include "content/browser/renderer_host/embedded_frame_sink_provider_impl.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment