mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
Versioning: Add the JUCE version number to any internally created threads
This commit is contained in:
parent
0e608f77fa
commit
6c2d149ef3
25 changed files with 27 additions and 27 deletions
|
|
@ -618,7 +618,7 @@ private:
|
|||
ConnectionThread (Platform& ownerToUse,
|
||||
URL& url,
|
||||
const StringArray& headers)
|
||||
: Thread ("WebBrowserComponent::Platform::ConnectionThread"),
|
||||
: Thread (SystemStats::getJUCEVersion() + ": WebBrowserComponent::Platform::ConnectionThread"),
|
||||
owner (ownerToUse),
|
||||
webInputStream (new WebInputStream (url, true))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1222,7 +1222,7 @@ public:
|
|||
Platform (WebBrowserComponent& browserIn,
|
||||
const WebBrowserComponent::Options& optionsIn,
|
||||
const StringArray& userStrings)
|
||||
: Thread ("Webview"), browser (browserIn), userAgent (optionsIn.getUserAgent())
|
||||
: Thread (SystemStats::getJUCEVersion() + ": Webview"), browser (browserIn), userAgent (optionsIn.getUserAgent())
|
||||
{
|
||||
webKitIsAvailable = WebKitSymbols::getInstance()->isWebKitAvailable();
|
||||
init (InitialisationData { optionsIn.getNativeIntegrationsEnabled(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue