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

Unified Diff: third_party/WebKit/Source/core/workers/SharedWorker.h

Issue 2627123003: SharedWorker: Simplify connection sequence (Closed)
Patch Set: remove unnecessary forward declaration Created 3 years, 11 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: third_party/WebKit/Source/core/workers/SharedWorker.h
diff --git a/third_party/WebKit/Source/core/workers/SharedWorker.h b/third_party/WebKit/Source/core/workers/SharedWorker.h
index bc43f0b16b9c7aa4d905083f0451cce1652643b4..e89e43cbea681745c641c4e3ca71be176767590c 100644
--- a/third_party/WebKit/Source/core/workers/SharedWorker.h
+++ b/third_party/WebKit/Source/core/workers/SharedWorker.h
@@ -61,6 +61,7 @@ class CORE_EXPORT SharedWorker final
const AtomicString& interfaceName() const override;
void setIsBeingConnected(bool b) { m_isBeingConnected = b; }
+ bool isBeingConnected() { return m_isBeingConnected; }
bool hasPendingActivity() const final;

Powered by Google App Engine
This is Rietveld 408576698