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

Unified Diff: content/browser/storage_partition_impl.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/browser/storage_partition_impl.h
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
index 1dc259a11b7311fba679f9be8c021796100f252e..b80105b1e9b534fdc9a481114f48292c22d4450a 100644
--- a/content/browser/storage_partition_impl.h
+++ b/content/browser/storage_partition_impl.h
@@ -31,7 +31,7 @@
namespace content {
class StoragePartitionImpl : public StoragePartition,
- public StoragePartitionService {
+ public mojom::StoragePartitionService {
public:
CONTENT_EXPORT ~StoragePartitionImpl() override;
@@ -64,10 +64,10 @@ class StoragePartitionImpl : public StoragePartition,
PlatformNotificationContextImpl* GetPlatformNotificationContext() override;
BackgroundSyncContextImpl* GetBackgroundSyncContext() override;
- // StoragePartitionService interface.
+ // mojom::StoragePartitionService interface.
void OpenLocalStorage(
const url::Origin& origin,
- mojo::InterfaceRequest<LevelDBWrapper> request) override;
+ mojo::InterfaceRequest<mojom::LevelDBWrapper> request) override;
void ClearDataForOrigin(uint32_t remove_mask,
uint32_t quota_storage_remove_mask,
@@ -90,7 +90,7 @@ class StoragePartitionImpl : public StoragePartition,
BrowserContext* browser_context() const;
// Called by each renderer process once.
- void Bind(mojo::InterfaceRequest<StoragePartitionService> request);
+ void Bind(mojo::InterfaceRequest<mojom::StoragePartitionService> request);
struct DataDeletionHelper;
struct QuotaManagedDataDeletionHelper;
@@ -206,7 +206,7 @@ class StoragePartitionImpl : public StoragePartition,
scoped_refptr<PlatformNotificationContextImpl> platform_notification_context_;
scoped_refptr<BackgroundSyncContextImpl> background_sync_context_;
- mojo::BindingSet<StoragePartitionService> bindings_;
+ mojo::BindingSet<mojom::StoragePartitionService> bindings_;
// Raw pointer that should always be valid. The BrowserContext owns the
// StoragePartitionImplMap which then owns StoragePartitionImpl. When the
« no previous file with comments | « content/browser/service_worker/service_worker_version_unittest.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698