Searched refs:IsSharingWith (Results 1 – 7 of 7) sorted by relevance
19 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 …]
44 bool IsSharingWith(CefRefPtr<CefRequestContext> other) OVERRIDE;
102 bool CefRequestContextCToCpp::IsSharingWith( in IsSharingWith() function in CefRequestContextCToCpp
124 virtual bool IsSharingWith(CefRefPtr<CefRequestContext> other) = 0;
315 bool CefRequestContextImpl::IsSharingWith(CefRefPtr<CefRequestContext> other) { in IsSharingWith() function in CefRequestContextImpl328 return pending_other->IsSharingWith(other); in IsSharingWith()335 return pending_other->IsSharingWith(this); in IsSharingWith()
56 bool IsSharingWith(CefRefPtr<CefRequestContext> other) override;
122 bool _retval = CefRequestContextCppToC::Get(self)->IsSharingWith( in request_context_is_sharing_with()