| Index: blimp/client/session/blimp_client_session.cc
|
| diff --git a/blimp/client/session/blimp_client_session.cc b/blimp/client/session/blimp_client_session.cc
|
| index 8dcfd91828bffe3d550ee003c119d019b126cfaa..94e2022a88324df1247f5eff07420f7ad7c3adda 100644
|
| --- a/blimp/client/session/blimp_client_session.cc
|
| +++ b/blimp/client/session/blimp_client_session.cc
|
| @@ -55,7 +55,7 @@ BlimpClientSession::BlimpClientSession(const GURL& assigner_endpoint)
|
| navigation_feature_(new NavigationFeature),
|
| ime_feature_(new ImeFeature),
|
| render_widget_feature_(new RenderWidgetFeature),
|
| - settings_feature_(new SettingsFeature),
|
| + settings_feature_(new SettingsFeature(nullptr)),
|
| weak_factory_(this) {
|
| base::Thread::Options options;
|
| options.message_loop_type = base::MessageLoop::TYPE_IO;
|
| @@ -154,7 +154,7 @@ void BlimpClientSession::RegisterFeatures() {
|
|
|
| if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDownloadWholeDocument))
|
| - settings_feature_->SetRecordWholeDocument(true);
|
| + settings_feature_->OnRecordWholeDocumentChanged(true);
|
| }
|
|
|
| void BlimpClientSession::DropConnection() {
|
|
|