Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
Sergey Ulanov
2017/01/18 22:20:35
2017
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
|
nicholss
2017/01/13 19:20:34
This is an implementation for Chromium to allow th
| |
| 5 #import "remoting/client/ios/host_preferences.h" | |
| 6 | |
| 7 #import "base/logging.h" | |
| 8 | |
| 9 namespace remoting { | |
| 10 namespace ios { | |
| 11 | |
| 12 NSError* writeHostPreferencesToKeychain(NSData* data) { | |
| 13 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.
| |
| 14 } | |
| 15 | |
| 16 NSData* readHostPreferencesFromKeychain() { | |
| 17 return nil; | |
|
Sergey Ulanov
2017/01/18 22:20:35
NOTIMPLEMENTED()
nicholss
2017/01/18 23:21:50
Done.
| |
| 18 } | |
| 19 | |
| 20 } // namespace ios | |
| 21 } // namespace remoting | |
| OLD | NEW |