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..6c9d9ebd5b95927098e4f60c4172062780d75e28 |
| --- /dev/null |
| +++ b/remoting/client/ios/host_preferences_chromium.mm |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
|
Sergey Ulanov
2017/01/18 22:20:35
2017
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
|
nicholss
2017/01/13 19:20:34
This is an implementation for Chromium to allow th
|
| +#import "remoting/client/ios/host_preferences.h" |
| + |
| +#import "base/logging.h" |
| + |
| +namespace remoting { |
| +namespace ios { |
| + |
| +NSError* writeHostPreferencesToKeychain(NSData* data) { |
| + return nil; |
|
Sergey Ulanov
2017/01/18 22:20:35
NOTIMPLEMENTED();
Also, would it be useful to sav
nicholss
2017/01/18 23:21:50
Done.
|
| +} |
| + |
| +NSData* readHostPreferencesFromKeychain() { |
| + return nil; |
|
Sergey Ulanov
2017/01/18 22:20:35
NOTIMPLEMENTED()
nicholss
2017/01/18 23:21:50
Done.
|
| +} |
| + |
| +} // namespace ios |
| +} // namespace remoting |