Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: remoting/client/ios/host_preferences_chromium.mm

Issue 2628403002: Migrating host preferences, runtime, and gestures to chromium from internal. (Closed)
Patch Set: Updating based on feedback, adding host_preferences_persistence.h to make saving these more clear. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « remoting/client/ios/host_preferences.mm ('k') | remoting/client/ios/host_preferences_persistence.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698