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

Unified Diff: Source/modules/quota/WorkerNavigatorStorageQuota.h

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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: Source/modules/quota/WorkerNavigatorStorageQuota.h
diff --git a/Source/modules/quota/WorkerNavigatorStorageQuota.h b/Source/modules/quota/WorkerNavigatorStorageQuota.h
index 202f3ece7276c9d7e53e91807ead4cd15709d223..a69c1be1d2c8570c81f123c3efa44247528fba02 100644
--- a/Source/modules/quota/WorkerNavigatorStorageQuota.h
+++ b/Source/modules/quota/WorkerNavigatorStorageQuota.h
@@ -42,10 +42,10 @@ namespace WebCore {
class WorkerNavigatorStorageQuota FINAL : public Supplement<WorkerNavigator> {
public:
virtual ~WorkerNavigatorStorageQuota();
- static WorkerNavigatorStorageQuota* from(WorkerNavigator*);
+ static WorkerNavigatorStorageQuota& from(WorkerNavigator&);
- static DeprecatedStorageQuota* webkitTemporaryStorage(WorkerNavigator*);
- static DeprecatedStorageQuota* webkitPersistentStorage(WorkerNavigator*);
+ static DeprecatedStorageQuota* webkitTemporaryStorage(WorkerNavigator&);
+ static DeprecatedStorageQuota* webkitPersistentStorage(WorkerNavigator&);
DeprecatedStorageQuota* webkitTemporaryStorage() const;
DeprecatedStorageQuota* webkitPersistentStorage() const;

Powered by Google App Engine
This is Rietveld 408576698