mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Avoid calling GetRequestContext() in UI thread, fixes #591.
Since we can access job factory without touching the request context, there is no need to make sure GetRequestContext() is called before using the protocol module.
This commit is contained in:
@@ -13,10 +13,6 @@
|
||||
#include "atom/common/node_bindings.h"
|
||||
#include "base/command_line.h"
|
||||
|
||||
#if defined(OS_WIN)
|
||||
#include "ui/gfx/win/dpi.h"
|
||||
#endif
|
||||
|
||||
#if defined(USE_X11)
|
||||
#include "chrome/browser/ui/libgtk2ui/gtk2_util.h"
|
||||
#endif
|
||||
@@ -80,10 +76,6 @@ void AtomBrowserMainParts::PreMainMessageLoopRun() {
|
||||
libgtk2ui::GtkInitFromCommandLine(*CommandLine::ForCurrentProcess());
|
||||
#endif
|
||||
|
||||
// Make sure the url request job factory is created before the ready event.
|
||||
static_cast<content::BrowserContext*>(AtomBrowserContext::Get())->
|
||||
GetRequestContext();
|
||||
|
||||
#if !defined(OS_MACOSX)
|
||||
// The corresponding call in OS X is in AtomApplicationDelegate.
|
||||
Browser::Get()->WillFinishLaunching();
|
||||
|
||||
Reference in New Issue
Block a user