Chromium Code Reviews| Index: remoting/client/ios/host_preferences_chromium.mm |
| diff --git a/remoting/client/ios/host_preferences_chromium.mm b/remoting/client/ios/host_preferences_chromium.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fb67eeaa95698dd04ba0aa52b020fe98719c1676 |
| --- /dev/null |
| +++ b/remoting/client/ios/host_preferences_chromium.mm |
| @@ -0,0 +1,29 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
|
Sergey Ulanov
2017/01/18 23:55:50
Rename this file to host_preferences_persistence_c
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#import "remoting/client/ios/host_preferences.h" |
|
Sergey Ulanov
2017/01/18 23:55:50
don't need this include. replace with host_prefere
|
| + |
| +#import "base/logging.h" |
| +#import "remoting/client/ios/host_preferences_persistence.h" |
| + |
| +namespace remoting { |
| +namespace ios { |
| + |
| +// TODO(nicholss): It might be useful to save |data| in a static variable, |
| +// which is then returned from ReadHostPreferencesFromKeychain(). This would |
| +// allow to test pairing, even though the pairing info is not persisted when |
| +// the app is restarted. |
| + |
| +NSError* WriteHostPreferencesToKeychain(NSData* data) { |
| + NOTIMPLEMENTED(); |
| + return nil; |
| +} |
| + |
| +NSData* ReadHostPreferencesFromKeychain() { |
| + NOTIMPLEMENTED(); |
| + return nil; |
| +} |
| + |
| +} // namespace ios |
| +} // namespace remoting |