Home
last modified time | relevance | path

Searched refs:IsSharingWith (Results 1 – 7 of 7) sorted by relevance

/third_party/cef/tests/ceftests/
Drequest_context_unittest.cc19 EXPECT_TRUE(context1->IsSharingWith(context1)); in TEST()
25 EXPECT_TRUE(context2->IsSharingWith(context2)); in TEST()
29 EXPECT_TRUE(context1->IsSharingWith(context2)); in TEST()
30 EXPECT_TRUE(context2->IsSharingWith(context1)); in TEST()
51 EXPECT_TRUE(context1->IsSharingWith(context1)); in TEST()
59 EXPECT_TRUE(context2->IsSharingWith(context2)); in TEST()
63 EXPECT_FALSE(context1->IsSharingWith(context2)); in TEST()
65 EXPECT_FALSE(context2->IsSharingWith(context1)); in TEST()
70 EXPECT_FALSE(context3->IsSharingWith(context1)); in TEST()
72 EXPECT_FALSE(context3->IsSharingWith(context2)); in TEST()
[all …]
/third_party/cef/libcef_dll/ctocpp/
Drequest_context_ctocpp.h44 bool IsSharingWith(CefRefPtr<CefRequestContext> other) OVERRIDE;
Drequest_context_ctocpp.cc102 bool CefRequestContextCToCpp::IsSharingWith( in IsSharingWith() function in CefRequestContextCToCpp
/third_party/cef/include/
Dcef_request_context.h124 virtual bool IsSharingWith(CefRefPtr<CefRequestContext> other) = 0;
/third_party/cef/libcef/browser/
Drequest_context_impl.cc315 bool CefRequestContextImpl::IsSharingWith(CefRefPtr<CefRequestContext> other) { in IsSharingWith() function in CefRequestContextImpl
328 return pending_other->IsSharingWith(other); in IsSharingWith()
335 return pending_other->IsSharingWith(this); in IsSharingWith()
Drequest_context_impl.h56 bool IsSharingWith(CefRefPtr<CefRequestContext> other) override;
/third_party/cef/libcef_dll/cpptoc/
Drequest_context_cpptoc.cc122 bool _retval = CefRequestContextCppToC::Get(self)->IsSharingWith( in request_context_is_sharing_with()