Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
|
Sergey Ulanov
2017/01/18 23:55:50
Rename this file to host_preferences_persistence_c
| |
| 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.h" | |
|
Sergey Ulanov
2017/01/18 23:55:50
don't need this include. replace with host_prefere
| |
| 6 | |
| 7 #import "base/logging.h" | |
| 8 #import "remoting/client/ios/host_preferences_persistence.h" | |
| 9 | |
| 10 namespace remoting { | |
| 11 namespace ios { | |
| 12 | |
| 13 // TODO(nicholss): It might be useful to save |data| in a static variable, | |
| 14 // which is then returned from ReadHostPreferencesFromKeychain(). This would | |
| 15 // allow to test pairing, even though the pairing info is not persisted when | |
| 16 // the app is restarted. | |
| 17 | |
| 18 NSError* WriteHostPreferencesToKeychain(NSData* data) { | |
| 19 NOTIMPLEMENTED(); | |
| 20 return nil; | |
| 21 } | |
| 22 | |
| 23 NSData* ReadHostPreferencesFromKeychain() { | |
| 24 NOTIMPLEMENTED(); | |
| 25 return nil; | |
| 26 } | |
| 27 | |
| 28 } // namespace ios | |
| 29 } // namespace remoting | |
| OLD | NEW |