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

Side by Side Diff: content/browser/storage_partition_impl.h

Issue 2556433002: PaymentApp: Implement GetAllManifests() in PaymentAppContext. (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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ 5 #ifndef CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_
6 #define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ 6 #define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 // Called by each renderer process once. 113 // Called by each renderer process once.
114 void Bind(mojo::InterfaceRequest<mojom::StoragePartitionService> request); 114 void Bind(mojo::InterfaceRequest<mojom::StoragePartitionService> request);
115 115
116 struct DataDeletionHelper; 116 struct DataDeletionHelper;
117 struct QuotaManagedDataDeletionHelper; 117 struct QuotaManagedDataDeletionHelper;
118 118
119 private: 119 private:
120 friend class BackgroundSyncManagerTest; 120 friend class BackgroundSyncManagerTest;
121 friend class BackgroundSyncServiceImplTest; 121 friend class BackgroundSyncServiceImplTest;
122 friend class PaymentAppManagerTest; 122 friend class PaymentAppContentUnitTestBase;
123 friend class StoragePartitionImplMap; 123 friend class StoragePartitionImplMap;
124 FRIEND_TEST_ALL_PREFIXES(StoragePartitionShaderClearTest, ClearShaderCache); 124 FRIEND_TEST_ALL_PREFIXES(StoragePartitionShaderClearTest, ClearShaderCache);
125 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest, 125 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest,
126 RemoveQuotaManagedDataForeverBoth); 126 RemoveQuotaManagedDataForeverBoth);
127 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest, 127 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest,
128 RemoveQuotaManagedDataForeverOnlyTemporary); 128 RemoveQuotaManagedDataForeverOnlyTemporary);
129 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest, 129 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest,
130 RemoveQuotaManagedDataForeverOnlyPersistent); 130 RemoveQuotaManagedDataForeverOnlyPersistent);
131 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest, 131 FRIEND_TEST_ALL_PREFIXES(StoragePartitionImplTest,
132 RemoveQuotaManagedDataForeverNeither); 132 RemoveQuotaManagedDataForeverNeither);
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the 235 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the
236 // BrowserContext is destroyed, |this| will be destroyed too. 236 // BrowserContext is destroyed, |this| will be destroyed too.
237 BrowserContext* browser_context_; 237 BrowserContext* browser_context_;
238 238
239 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); 239 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl);
240 }; 240 };
241 241
242 } // namespace content 242 } // namespace content
243 243
244 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ 244 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698