WebKit Bugzilla
Attachment 369111 Details for
Bug 197606
: [GLib] WebCore::MainThreadSharedTimer should use the appropriate GSource priority, name
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197606-20190506095103.patch (text/plain), 1.61 KB, created by
Zan Dobersek
on 2019-05-06 00:51:04 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Zan Dobersek
Created:
2019-05-06 00:51:04 PDT
Size:
1.61 KB
patch
obsolete
>Subversion Revision: 244956 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 87ff5149b122fb90b7ece5da662314ff61195f56..afbf537853bebc8ec53ba0e04741b946154bf97f 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,15 @@ >+2019-05-06 Zan Dobersek <zdobersek@igalia.com> >+ >+ [GLib] WebCore::MainThreadSharedTimer should use the appropriate GSource priority, name >+ https://bugs.webkit.org/show_bug.cgi?id=197606 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * platform/MainThreadSharedTimer.cpp: >+ (WebCore::MainThreadSharedTimer::MainThreadSharedTimer): >+ Use the MainThreadSharedTimer GLib priority for this timer. The name is >+ also adjusted accordingly. >+ > 2019-05-05 Wenson Hsieh <wenson_hsieh@apple.com> > > fast/attachment/attachment-folder-icon.html is an Image Only failure on recent macOS builds >diff --git a/Source/WebCore/platform/MainThreadSharedTimer.cpp b/Source/WebCore/platform/MainThreadSharedTimer.cpp >index 00dede9c073286ce657e9c75b382db13c0e7f7cf..4251c87e81f710672a7b3fbba7a879c90ee260c2 100644 >--- a/Source/WebCore/platform/MainThreadSharedTimer.cpp >+++ b/Source/WebCore/platform/MainThreadSharedTimer.cpp >@@ -50,8 +50,8 @@ MainThreadSharedTimer::MainThreadSharedTimer() > : m_timer(RunLoop::main(), this, &MainThreadSharedTimer::fired) > { > #if USE(GLIB) >- m_timer.setPriority(RunLoopSourcePriority::MainThreadDispatcherTimer); >- m_timer.setName("[WebKit] MainThreadDispatcherTimer"); >+ m_timer.setPriority(RunLoopSourcePriority::MainThreadSharedTimer); >+ m_timer.setName("[WebKit] MainThreadSharedTimer"); > #endif > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197606
: 369111