| Index: chrome/browser/sync/sync_setup_flow.cc
|
| diff --git a/chrome/browser/sync/sync_setup_flow.cc b/chrome/browser/sync/sync_setup_flow.cc
|
| index 3bd4056b7c7acb67de28dc362d2d427304eecd35..e0d54dc309121fc4a888b658fbb1f3468beb31e4 100644
|
| --- a/chrome/browser/sync/sync_setup_flow.cc
|
| +++ b/chrome/browser/sync/sync_setup_flow.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -38,6 +38,13 @@ static const wchar_t* kPassphraseIFrameXPath =
|
| L"//iframe[@id='passphrase']";
|
| static const wchar_t* kDoneIframeXPath = L"//iframe[@id='done']";
|
|
|
| +SyncConfiguration::SyncConfiguration()
|
| + : sync_everything(false),
|
| + use_secondary_passphrase(false) {
|
| +}
|
| +
|
| +SyncConfiguration::~SyncConfiguration() {}
|
| +
|
| void FlowHandler::RegisterMessages() {
|
| dom_ui_->RegisterMessageCallback("SubmitAuth",
|
| NewCallback(this, &FlowHandler::HandleSubmitAuth));
|
|
|