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

Unified Diff: content/renderer/dom_storage/local_storage_cached_areas.h

Issue 1832813002: Add mojom module suffix in .mojom files in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tom's comment Created 4 years, 9 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
Index: content/renderer/dom_storage/local_storage_cached_areas.h
diff --git a/content/renderer/dom_storage/local_storage_cached_areas.h b/content/renderer/dom_storage/local_storage_cached_areas.h
index e4cb949031deb1cbfc0c839194ffd67506bf898a..662d36910ae77727cdf2cc0a9fe399e8e408b965 100644
--- a/content/renderer/dom_storage/local_storage_cached_areas.h
+++ b/content/renderer/dom_storage/local_storage_cached_areas.h
@@ -13,7 +13,10 @@
namespace content {
class LocalStorageCachedArea;
+
+namespace mojom {
class StoragePartitionService;
+}
// Keeps a map of all the LocalStorageCachedArea objects in a renderer. This is
// needed because we can have n LocalStorageArea objects for the same origin but
@@ -22,7 +25,7 @@ class StoragePartitionService;
class LocalStorageCachedAreas {
public:
explicit LocalStorageCachedAreas(
- StoragePartitionService* storage_partition_service);
+ mojom::StoragePartitionService* storage_partition_service);
~LocalStorageCachedAreas();
// Returns, creating if necessary, a cached storage area for the given origin.
@@ -33,7 +36,7 @@ class LocalStorageCachedAreas {
void CacheAreaClosed(LocalStorageCachedArea* cached_area);
private:
- StoragePartitionService* const storage_partition_service_;
+ mojom::StoragePartitionService* const storage_partition_service_;
// Maps from an origin to its LocalStorageCachedArea object. The object owns
// itself.
« no previous file with comments | « content/renderer/dom_storage/local_storage_cached_area.cc ('k') | content/renderer/dom_storage/local_storage_cached_areas.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698