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

Unified Diff: third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp

Issue 2193103002: [worklets] Change paintWorklet method to non-const to remove mutable member. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
diff --git a/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
index ad97908ac77b22ea62f12101cdfe105f76286dbb..36e7cf38c8864fb5bcea25194a2a55a5c0b796e2 100644
--- a/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
+++ b/third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.cpp
@@ -37,7 +37,7 @@ Worklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext, DO
return from(toLocalDOMWindow(window)).paintWorklet(executionContext);
}
-PaintWorklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext) const
+PaintWorklet* WindowPaintWorklet::paintWorklet(ExecutionContext* executionContext)
{
if (!m_paintWorklet && frame())
m_paintWorklet = PaintWorklet::create(frame(), executionContext);
« no previous file with comments | « third_party/WebKit/Source/modules/csspaint/WindowPaintWorklet.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698