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

Unified Diff: Source/core/page/Page.h

Issue 40143003: Simplify SharedWorkerRepository code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/Page.h
diff --git a/Source/core/page/Page.h b/Source/core/page/Page.h
index bcfe290cf9a39a416c622eba2b51b799a5707e92..7430d3404d8a87614b9c7381b3e3c9d0a13af4fa 100644
--- a/Source/core/page/Page.h
+++ b/Source/core/page/Page.h
@@ -71,6 +71,7 @@ class VisibleSelection;
class ScrollableArea;
class ScrollingCoordinator;
class Settings;
+class SharedWorkerRepositoryClient;
class StorageNamespace;
class ValidationMessageClient;
@@ -146,6 +147,8 @@ public:
PointerLockController& pointerLockController() const { return *m_pointerLockController; }
ValidationMessageClient* validationMessageClient() const { return m_validationMessageClient; }
void setValidationMessageClient(ValidationMessageClient* client) { m_validationMessageClient = client; }
+ SharedWorkerRepositoryClient* sharedWorkerRepositoryClient() { return m_sharedWorkerRepositoryClient; }
+ void setSharedWorkerRepositoryClient(SharedWorkerRepositoryClient* client) { m_sharedWorkerRepositoryClient = client; }
bool autoscrollInProgress() const;
bool autoscrollInProgress(const RenderBox*) const;
@@ -272,6 +275,7 @@ private:
BackForwardClient* m_backForwardClient;
EditorClient* const m_editorClient;
ValidationMessageClient* m_validationMessageClient;
+ SharedWorkerRepositoryClient* m_sharedWorkerRepositoryClient;
UseCounter m_useCounter;
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698