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

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

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/macros.h"
10 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
11 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
12 #include "base/synchronization/waitable_event.h" 13 #include "base/synchronization/waitable_event.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "chrome/browser/password_manager/password_store_factory.h" 15 #include "chrome/browser/password_manager/password_store_factory.h"
15 #include "chrome/browser/sync/profile_sync_service_factory.h" 16 #include "chrome/browser/sync/profile_sync_service_factory.h"
16 #include "chrome/browser/sync/test/integration/multi_client_status_change_checke r.h" 17 #include "chrome/browser/sync/test/integration/multi_client_status_change_checke r.h"
17 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 18 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
18 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h" 19 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h"
19 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" 20 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h"
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 form.origin = GURL(base::StringPrintf(kIndexedFakeOrigin, index)); 343 form.origin = GURL(base::StringPrintf(kIndexedFakeOrigin, index));
343 form.username_value = 344 form.username_value =
344 base::ASCIIToUTF16(base::StringPrintf("username%d", index)); 345 base::ASCIIToUTF16(base::StringPrintf("username%d", index));
345 form.password_value = 346 form.password_value =
346 base::ASCIIToUTF16(base::StringPrintf("password%d", index)); 347 base::ASCIIToUTF16(base::StringPrintf("password%d", index));
347 form.date_created = base::Time::Now(); 348 form.date_created = base::Time::Now();
348 return form; 349 return form;
349 } 350 }
350 351
351 } // namespace passwords_helper 352 } // namespace passwords_helper
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698