| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/sync/test/integration/passwords_helper.h" | 5 #include "chrome/browser/sync/test/integration/passwords_helper.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 #include <string> |
| 8 #include <utility> | 9 #include <utility> |
| 9 | 10 |
| 10 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 12 #include "base/macros.h" |
| 12 #include "base/strings/stringprintf.h" | 13 #include "base/strings/stringprintf.h" |
| 13 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
| 14 #include "base/synchronization/waitable_event.h" | 15 #include "base/synchronization/waitable_event.h" |
| 15 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 16 #include "chrome/browser/password_manager/password_store_factory.h" | 17 #include "chrome/browser/password_manager/password_store_factory.h" |
| 17 #include "chrome/browser/sync/profile_sync_service_factory.h" | 18 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 result = | 282 result = |
| 282 passwords_helper::ProfileContainsSamePasswordFormsAsVerifier(index_); | 283 passwords_helper::ProfileContainsSamePasswordFormsAsVerifier(index_); |
| 283 } while (needs_recheck_); | 284 } while (needs_recheck_); |
| 284 in_progress_ = false; | 285 in_progress_ = false; |
| 285 return result; | 286 return result; |
| 286 } | 287 } |
| 287 | 288 |
| 288 std::string SamePasswordFormsAsVerifierChecker::GetDebugMessage() const { | 289 std::string SamePasswordFormsAsVerifierChecker::GetDebugMessage() const { |
| 289 return "Waiting for passwords to match verifier"; | 290 return "Waiting for passwords to match verifier"; |
| 290 } | 291 } |
| OLD | NEW |