diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-08 23:58:15 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-08 23:58:15 +0000 |
commit | 6b395fee22239c0fedd1974ea4fad5a5031fc469 (patch) | |
tree | 91e4cb28ea1500dcf6abc88dbc2d8d0e4f758b4f /chrome/app/android | |
parent | 193149cfeb82bf67a677cade990249e5dd7ebf23 (diff) | |
download | chromium_src-6b395fee22239c0fedd1974ea4fad5a5031fc469.zip chromium_src-6b395fee22239c0fedd1974ea4fad5a5031fc469.tar.gz chromium_src-6b395fee22239c0fedd1974ea4fad5a5031fc469.tar.bz2 |
Make net use v8 through gin
- no longer try to use the default isolate (we want to remove it from v8)
- add the option to gin to manage an isolate in non-strict mode
BUG=359977
R=eroman@chromium.org,abarth@chromium.org
Review URL: https://codereview.chromium.org/227233006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262559 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/android')
-rw-r--r-- | chrome/app/android/chrome_android_initializer.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/app/android/chrome_android_initializer.cc b/chrome/app/android/chrome_android_initializer.cc index 57dcb5e..e4d0c2d 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; } |