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

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

Issue 2662453008: [Sync] Fix sync lint errors/includes, update presubmit. (Closed)
Patch Set: Rebase Created 3 years, 10 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 <string>
9 #include <utility> 8 #include <utility>
10 9
11 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
12 #include "base/macros.h" 11 #include "base/macros.h"
13 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
14 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
15 #include "base/synchronization/waitable_event.h" 14 #include "base/synchronization/waitable_event.h"
16 #include "base/time/time.h" 15 #include "base/time/time.h"
17 #include "chrome/browser/password_manager/password_store_factory.h" 16 #include "chrome/browser/password_manager/password_store_factory.h"
18 #include "chrome/browser/sync/profile_sync_service_factory.h" 17 #include "chrome/browser/sync/profile_sync_service_factory.h"
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 result = 281 result =
283 passwords_helper::ProfileContainsSamePasswordFormsAsVerifier(index_); 282 passwords_helper::ProfileContainsSamePasswordFormsAsVerifier(index_);
284 } while (needs_recheck_); 283 } while (needs_recheck_);
285 in_progress_ = false; 284 in_progress_ = false;
286 return result; 285 return result;
287 } 286 }
288 287
289 std::string SamePasswordFormsAsVerifierChecker::GetDebugMessage() const { 288 std::string SamePasswordFormsAsVerifierChecker::GetDebugMessage() const {
290 return "Waiting for passwords to match verifier"; 289 return "Waiting for passwords to match verifier";
291 } 290 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698