Home | History | Annotate | Download | only in spdy

Lines Matching refs:SETTINGS

85   explicit NetLogSpdySettingsParameter(const spdy::SpdySettings& settings)
86 : settings_(settings) {}
90 ListValue* settings = new ListValue();
93 settings->Append(new StringValue(
96 dict->Set("settings", settings);
332 // Write out any data that we might have to send, such as the settings frame.
1273 case spdy::SETTINGS:
1386 spdy::SpdySettings settings;
1387 if (spdy_framer_.ParseSettings(&frame, &settings)) {
1388 HandleSettings(settings);
1389 spdy_settings_->Set(host_port_pair(), settings);
1396 make_scoped_refptr(new NetLogSpdySettingsParameter(settings)));
1467 // Note: we're copying the settings here, so that we can potentially modify
1468 // the settings for the field trial. When removing the field trial, make
1470 spdy::SpdySettings settings = spdy_settings_->Get(host_port_pair());
1471 if (settings.empty())
1475 for (spdy::SpdySettings::iterator i = settings.begin(),
1476 end = settings.end(); i != end; ++i) {
1489 spdy_settings_->Set(host_port_pair(), settings);
1495 HandleSettings(settings);
1499 settings)));
1501 // Create the SETTINGS frame and send it.
1503 spdy_framer_.CreateSettings(settings));
1508 void SpdySession::HandleSettings(const spdy::SpdySettings& settings) {
1509 for (spdy::SpdySettings::const_iterator i = settings.begin(),
1510 end = settings.end(); i != end; ++i) {
1644 // Enumerate the saved settings, and set histograms for it.
1645 const spdy::SpdySettings& settings = spdy_settings_->Get(host_port_pair());
1648 for (it = settings.begin(); it != settings.end(); ++it) {