Home | History | Annotate | Download | only in http

Lines Matching refs:realm

17 // Note that if a realm was not specified, we will default it to "";
18 // so specifying 'Basic realm=""' is equivalent to 'Basic'.
21 // production of challenge that realm is required.
24 // include a realm (see http://crbug.com/20984.)
40 // Extract the realm (may be missing).
41 std::string realm;
43 if (LowerCaseEqualsASCII(parameters.name(), "realm"))
44 realm = parameters.value();
50 realm_ = realm;
58 // is for a different realm, then indicate the realm change.
60 std::string realm;
62 if (LowerCaseEqualsASCII(parameters.name(), "realm"))
63 realm = parameters.value();
65 return (realm_ != realm)?