Searched refs:ProxyResolverV8 (Results 1 - 18 of 18) sorted by relevance

/external/chromium/net/proxy/
H A Dproxy_resolver_v8.h22 // constraint, ProxyResolverV8 holds a v8::Locker during execution. Therefore
23 // it is OK to run multiple instances of ProxyResolverV8 on different threads,
28 // instances and the locked V8 instances used by ProxyResolverV8 (assuming they
34 class ProxyResolverV8 : public ProxyResolver { class in namespace:net
36 // Constructs a ProxyResolverV8 with custom bindings. ProxyResolverV8 takes
37 // ownership of |custom_js_bindings| and deletes it when ProxyResolverV8
39 explicit ProxyResolverV8(ProxyResolverJSBindings* custom_js_bindings);
41 virtual ~ProxyResolverV8();
68 DISALLOW_COPY_AND_ASSIGN(ProxyResolverV8);
[all...]
H A Dproxy_resolver_v8.cc329 // ProxyResolverV8::Context ---------------------------------------------------
331 class ProxyResolverV8::Context {
678 // ProxyResolverV8 ------------------------------------------------------------
680 ProxyResolverV8::ProxyResolverV8( function in class:net::ProxyResolverV8
686 ProxyResolverV8::~ProxyResolverV8() {}
688 int ProxyResolverV8::GetProxyForURL(const GURL& query_url,
719 void ProxyResolverV8::CancelRequest(RequestHandle request) {
724 void ProxyResolverV8
[all...]
H A Dproxy_resolver_perftest.cc193 TEST(ProxyResolverPerfTest, ProxyResolverV8) {
198 net::ProxyResolverV8 resolver(js_bindings);
199 PacPerfSuiteRunner runner(&resolver, "ProxyResolverV8");
H A Dproxy_resolver_v8_unittest.cc21 // Javascript bindings for ProxyResolverV8, which returns mock values.
84 // This is the same as ProxyResolverV8, but it uses mock bindings in place of
87 class ProxyResolverV8WithMockBindings : public ProxyResolverV8 {
89 ProxyResolverV8WithMockBindings() : ProxyResolverV8(new MockJSBindings()) {}
H A Dproxy_service.cc190 // ProxyResolverV8 takes ownership of |js_bindings|.
191 return new ProxyResolverV8(js_bindings);
/external/chromium-libpac/src/
H A Dproxy_resolver_v8.h35 // constraint, ProxyResolverV8 holds a v8::Locker during execution. Therefore
36 // it is OK to run multiple instances of ProxyResolverV8 on different threads,
41 // instances and the locked V8 instances used by ProxyResolverV8 (assuming they
47 class ProxyResolverV8 { class in namespace:net
49 // Constructs a ProxyResolverV8 with custom bindings. ProxyResolverV8 takes
50 // ownership of |custom_js_bindings| and deletes it when ProxyResolverV8
52 explicit ProxyResolverV8(ProxyResolverJSBindings* custom_js_bindings,
55 virtual ~ProxyResolverV8();
H A Dproxy_resolver_v8.cc348 // ProxyResolverV8::Context ---------------------------------------------------
350 class ProxyResolverV8::Context {
684 // ProxyResolverV8 ------------------------------------------------------------
686 ProxyResolverV8::ProxyResolverV8( function in class:net::ProxyResolverV8
694 ProxyResolverV8::~ProxyResolverV8() {
704 int ProxyResolverV8::GetProxyForURL(const android::String16 spec, const android::String16 host,
717 void ProxyResolverV8::PurgeMemory() {
721 int ProxyResolverV8
[all...]
/external/chromium_org/chrome/app/android/
H A Dchrome_android_initializer.cc23 // http://crbug.com/173648 . V8's default isolate is used by ProxyResolverV8
27 net::ProxyResolverV8::RememberDefaultIsolate();
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8.h26 // constraint, ProxyResolverV8 holds a v8::Locker during execution. Therefore
27 // it is OK to run multiple instances of ProxyResolverV8 on different threads,
32 // instances and the locked V8 instances used by ProxyResolverV8 (assuming they
38 class NET_EXPORT_PRIVATE ProxyResolverV8 : public ProxyResolver { class in namespace:net
72 // Constructs a ProxyResolverV8.
73 ProxyResolverV8();
75 virtual ~ProxyResolverV8();
126 DISALLOW_COPY_AND_ASSIGN(ProxyResolverV8);
H A Dproxy_resolver_v8_tracing.h25 class ProxyResolverV8;
28 // ProxyResolverV8 on a single helper thread, and does some magic to avoid
64 // The worker thread on which the ProxyResolverV8 will be run.
66 scoped_ptr<ProxyResolverV8> v8_resolver_;
H A Dproxy_resolver_v8.cc332 // ProxyResolverV8::Context ---------------------------------------------------
334 class ProxyResolverV8::Context {
336 Context(ProxyResolverV8* parent, v8::Isolate* isolate)
684 ProxyResolverV8* parent_;
690 // ProxyResolverV8 ------------------------------------------------------------
692 ProxyResolverV8::ProxyResolverV8() function in class:net::ProxyResolverV8
697 ProxyResolverV8::~ProxyResolverV8() {}
699 int ProxyResolverV8
[all...]
H A Dproxy_resolver_perftest.cc198 class MockJSBindings : public net::ProxyResolverV8::JSBindings {
220 TEST(ProxyResolverPerfTest, ProxyResolverV8) {
222 net::ProxyResolverV8::RememberDefaultIsolate();
225 net::ProxyResolverV8 resolver;
227 PacPerfSuiteRunner runner(&resolver, "ProxyResolverV8");
H A Dproxy_resolver_v8_tracing.cc90 public ProxyResolverV8::JSBindings {
136 ProxyResolverV8* v8_resolver();
470 ProxyResolverV8* ProxyResolverV8Tracing::Job::v8_resolver() {
1105 v8_resolver_.reset(new ProxyResolverV8);
1157 base::Bind(&ProxyResolverV8::PurgeMemory,
H A Dproxy_resolver_v8_unittest.cc21 // Javascript bindings for ProxyResolverV8, which returns mock values.
24 class MockJSBindings : public ProxyResolverV8::JSBindings {
96 // This is the same as ProxyResolverV8, but it uses mock bindings in place of
99 class ProxyResolverV8WithMockBindings : public ProxyResolverV8 {
/external/chromium_org/net/test/
H A Drun_all_unittests.cc49 net::ProxyResolverV8::RememberDefaultIsolate();
/external/chromium_org/chrome/browser/task_manager/
H A Dbrowser_process_resource_provider.cc125 return net::ProxyResolverV8::GetTotalHeapSize();
129 return net::ProxyResolverV8::GetUsedHeapSize();
/external/chromium-libpac/test/
H A Dproxy_resolver_v8_unittest.cc19 // Javascript bindings for ProxyResolverV8, which returns mock values.
84 // This is the same as ProxyResolverV8, but it uses mock bindings in place of
87 class ProxyResolverV8WithMockBindings : public ProxyResolverV8 {
90 ProxyResolverV8(mock_js_bindings, mock_js_bindings), mock_js_bindings_(mock_js_bindings) {
/external/chromium_org/chrome/browser/
H A Dio_thread.cc392 net::ProxyResolverV8::RememberDefaultIsolate();
394 net::ProxyResolverV8::CreateIsolate();
396 net::ProxyResolverV8::RememberDefaultIsolate();

Completed in 995 milliseconds