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

Unified Diff: chrome/app/android/chrome_android_initializer.cc

Issue 227233006: Make net use v8 through gin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 8 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 | « no previous file | chrome/browser/io_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/android/chrome_android_initializer.cc
diff --git a/chrome/app/android/chrome_android_initializer.cc b/chrome/app/android/chrome_android_initializer.cc
index 57dcb5e40337c35b508f4c3b93d49bc268890364..e4d0c2d4307c2cd9993c85aeb30b395cc524b6df 100644
--- a/chrome/app/android/chrome_android_initializer.cc
+++ b/chrome/app/android/chrome_android_initializer.cc
@@ -11,7 +11,6 @@
#include "chrome/common/chrome_version_info.h"
#include "content/public/app/android_library_loader_hooks.h"
#include "content/public/app/content_main.h"
-#include "net/proxy/proxy_resolver_v8.h"
jint RunChrome(JavaVM* vm, ChromeMainDelegateAndroid* main_delegate) {
base::android::InitVM(vm);
@@ -28,11 +27,5 @@ jint RunChrome(JavaVM* vm, ChromeMainDelegateAndroid* main_delegate) {
DCHECK(main_delegate);
content::SetContentMainDelegate(main_delegate);
- // http://crbug.com/173648 . V8's default isolate is used by ProxyResolverV8
- // to resolve PAC urls. The default isolate is created by static initializer
- // on the shared library thread, and can only be looked up in that thread's
- // TLS.
- net::ProxyResolverV8::RememberDefaultIsolate();
-
return JNI_VERSION_1_4;
}
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698