| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #import "ios/chrome/browser/passwords/password_controller.h" | 5 #import "ios/chrome/browser/passwords/password_controller.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include <algorithm> | 9 #include <algorithm> |
| 8 #include <utility> | 10 #include <utility> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #import "base/ios/weak_nsobject.h" | 13 #import "base/ios/weak_nsobject.h" |
| 12 #include "base/json/json_reader.h" | 14 #include "base/json/json_reader.h" |
| 13 #include "base/json/json_writer.h" | 15 #include "base/json/json_writer.h" |
| 14 #include "base/mac/foundation_util.h" | 16 #include "base/mac/foundation_util.h" |
| 15 #include "base/mac/scoped_nsobject.h" | 17 #include "base/mac/scoped_nsobject.h" |
| 16 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 | 788 |
| 787 - (PasswordManager*)passwordManager { | 789 - (PasswordManager*)passwordManager { |
| 788 return passwordManager_.get(); | 790 return passwordManager_.get(); |
| 789 } | 791 } |
| 790 | 792 |
| 791 - (JsPasswordManager*)passwordJsManager { | 793 - (JsPasswordManager*)passwordJsManager { |
| 792 return passwordJsManager_; | 794 return passwordJsManager_; |
| 793 } | 795 } |
| 794 | 796 |
| 795 @end | 797 @end |
| OLD | NEW |