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

Unified Diff: third_party/WebKit/Source/core/workers/WorkletScriptLoader.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/WorkletScriptLoader.h
diff --git a/third_party/WebKit/Source/core/workers/WorkletScriptLoader.h b/third_party/WebKit/Source/core/workers/WorkletScriptLoader.h
index 12a97b2acdf4feb2b5a3f6a3d9e4fc9aaeaeca67..3f2751471c5a8cd13a0bc5b0ccfe7e10908617e4 100644
--- a/third_party/WebKit/Source/core/workers/WorkletScriptLoader.h
+++ b/third_party/WebKit/Source/core/workers/WorkletScriptLoader.h
@@ -14,7 +14,8 @@ namespace blink {
class Worklet;
-// Class that is responsible for processing {@code resource} that is associated with worklet's import promise.
+// Class that is responsible for processing {@code resource} that is associated
+// with worklet's import promise.
class WorkletScriptLoader final
: public GarbageCollectedFinalized<WorkletScriptLoader>,
public ResourceOwner<ScriptResource, ScriptResourceClient> {
@@ -33,7 +34,8 @@ class WorkletScriptLoader final
// Cancels loading of {@code m_resource}.
//
- // Typically it gets called when WorkletScriptLoader's host is about to be disposed off.
+ // Typically it gets called when WorkletScriptLoader's host is about to be
+ // disposed off.
void cancel();
DECLARE_TRACE();
@@ -41,7 +43,8 @@ class WorkletScriptLoader final
private:
// Default constructor.
//
- // @param resolver Promise resolver that is used to reject/resolve the promise on ScriptResourceClient::notifyFinished event.
+ // @param resolver Promise resolver that is used to reject/resolve the promise
+ // on ScriptResourceClient::notifyFinished event.
// @param host Host that needs be notified when the resource is downloaded.
// @param resource that needs to be downloaded.
WorkletScriptLoader(ScriptPromiseResolver*, Worklet* host, ScriptResource*);

Powered by Google App Engine
This is Rietveld 408576698