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

Side by Side Diff: ios/chrome/browser/ui/settings/save_passwords_collection_view_controller.mm

Issue 2949573002: Move the files related to Android<->Web credentials to a separate folder. (Closed)
Patch Set: Remove includes Created 3 years, 6 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #import "ios/chrome/browser/ui/settings/save_passwords_collection_view_controlle r.h" 5 #import "ios/chrome/browser/ui/settings/save_passwords_collection_view_controlle r.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/ios/ios_util.h" 10 #include "base/ios/ios_util.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/mac/foundation_util.h" 12 #include "base/mac/foundation_util.h"
13 13
14 #include "base/memory/ptr_util.h" 14 #include "base/memory/ptr_util.h"
15 #include "base/numerics/safe_conversions.h" 15 #include "base/numerics/safe_conversions.h"
16 #include "base/strings/sys_string_conversions.h" 16 #include "base/strings/sys_string_conversions.h"
17 #include "base/strings/utf_string_conversions.h" 17 #include "base/strings/utf_string_conversions.h"
18 #include "components/autofill/core/common/password_form.h" 18 #include "components/autofill/core/common/password_form.h"
19 #include "components/google/core/browser/google_util.h" 19 #include "components/google/core/browser/google_util.h"
20 #include "components/keyed_service/core/service_access_type.h" 20 #include "components/keyed_service/core/service_access_type.h"
21 #include "components/password_manager/core/browser/affiliation_utils.h" 21 #include "components/password_manager/core/browser/android_affiliation/affiliati on_utils.h"
22 #include "components/password_manager/core/browser/password_manager_constants.h" 22 #include "components/password_manager/core/browser/password_manager_constants.h"
23 #include "components/password_manager/core/browser/password_store.h" 23 #include "components/password_manager/core/browser/password_store.h"
24 #include "components/password_manager/core/browser/password_store_consumer.h" 24 #include "components/password_manager/core/browser/password_store_consumer.h"
25 #include "components/password_manager/core/common/password_manager_pref_names.h" 25 #include "components/password_manager/core/common/password_manager_pref_names.h"
26 #include "components/prefs/pref_member.h" 26 #include "components/prefs/pref_member.h"
27 #include "components/prefs/pref_service.h" 27 #include "components/prefs/pref_service.h"
28 #include "components/strings/grit/components_strings.h" 28 #include "components/strings/grit/components_strings.h"
29 #include "components/url_formatter/url_formatter.h" 29 #include "components/url_formatter/url_formatter.h"
30 #include "ios/chrome/browser/application_context.h" 30 #include "ios/chrome/browser/application_context.h"
31 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 31 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 586
587 - (void)updateSuccessfulReauthTime { 587 - (void)updateSuccessfulReauthTime {
588 successfulReauthTime_ = [[NSDate alloc] init]; 588 successfulReauthTime_ = [[NSDate alloc] init];
589 } 589 }
590 590
591 - (NSDate*)lastSuccessfulReauthTime { 591 - (NSDate*)lastSuccessfulReauthTime {
592 return successfulReauthTime_; 592 return successfulReauthTime_;
593 } 593 }
594 594
595 @end 595 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698