Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: chrome/browser/sync/test/integration/passwords_helper.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <utility> 8 #include <utility>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/message_loop/message_loop.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"
18 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 19 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
19 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" 20 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
20 #include "components/password_manager/core/browser/password_manager_test_utils.h " 21 #include "components/password_manager/core/browser/password_manager_test_utils.h "
21 #include "components/password_manager/core/browser/password_store.h" 22 #include "components/password_manager/core/browser/password_store.h"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698