| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #import "remoting/client/ios/host_preferences_persistence.h" | |
| 6 | |
| 7 #import "base/logging.h" | |
| 8 | |
| 9 namespace remoting { | |
| 10 namespace ios { | |
| 11 | |
| 12 // TODO(nicholss): It might be useful to save |data| in a static variable, | |
| 13 // which is then returned from ReadHostPreferencesFromKeychain(). This would | |
| 14 // allow to test pairing, even though the pairing info is not persisted when | |
| 15 // the app is restarted. | |
| 16 | |
| 17 NSError* WriteHostPreferencesToKeychain(NSData* data) { | |
| 18 NOTIMPLEMENTED(); | |
| 19 return nil; | |
| 20 } | |
| 21 | |
| 22 NSData* ReadHostPreferencesFromKeychain() { | |
| 23 NOTIMPLEMENTED(); | |
| 24 return nil; | |
| 25 } | |
| 26 | |
| 27 } // namespace ios | |
| 28 } // namespace remoting | |
| OLD | NEW |