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

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

Issue 2387983002: Worker: Reflow comments in worker components (Closed)
Patch Set: manually tweak Created 4 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
Index: third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
index 5031edad3a7e8ab710a45ccf0e7c95db797044a1..1d61cbdb6adffe666855e8dfa322a9867ea0c01b 100644
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h
@@ -56,8 +56,10 @@ class CORE_EXPORT InProcessWorkerBase : public AbstractWorker,
explicit InProcessWorkerBase(ExecutionContext*);
bool initialize(ExecutionContext*, const String&, ExceptionState&);
- // Creates a proxy to allow communicating with the worker's global scope. InProcessWorkerBase does not take ownership of the
- // created proxy. The proxy is expected to manage its own lifetime, and delete itself in response to terminateWorkerGlobalScope().
+ // Creates a proxy to allow communicating with the worker's global scope.
+ // InProcessWorkerBase does not take ownership of the created proxy. The proxy
+ // is expected to manage its own lifetime, and delete itself in response to
+ // terminateWorkerGlobalScope().
virtual InProcessWorkerMessagingProxy* createInProcessWorkerMessagingProxy(
ExecutionContext*) = 0;
@@ -69,8 +71,9 @@ class CORE_EXPORT InProcessWorkerBase : public AbstractWorker,
RefPtr<WorkerScriptLoader> m_scriptLoader;
Member<ContentSecurityPolicy> m_contentSecurityPolicy;
String m_referrerPolicy;
- InProcessWorkerMessagingProxy*
- m_contextProxy; // The proxy outlives the worker to perform thread shutdown.
+
+ // The proxy outlives the worker to perform thread shutdown.
+ InProcessWorkerMessagingProxy* m_contextProxy;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698