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

Side by Side Diff: remoting/ios/host_preferences_persistence_chromium.mm

Issue 2871993003: Moving the iOS directory to be remoting top level. (Closed)
Patch Set: //remoting/ios was the old landing target for the internal iOS application. Fix. Created 3 years, 7 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
« no previous file with comments | « remoting/ios/host_preferences_persistence.h ('k') | remoting/ios/key_input.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "remoting/client/ios/host_preferences_persistence.h" 5 #import "remoting/ios/host_preferences_persistence.h"
6 6
7 #import "base/logging.h" 7 #import "base/logging.h"
8 8
9 namespace remoting { 9 namespace remoting {
10 namespace ios { 10 namespace ios {
11 11
12 // TODO(nicholss): It might be useful to save |data| in a static variable, 12 // TODO(nicholss): It might be useful to save |data| in a static variable,
13 // which is then returned from ReadHostPreferencesFromKeychain(). This would 13 // which is then returned from ReadHostPreferencesFromKeychain(). This would
14 // allow to test pairing, even though the pairing info is not persisted when 14 // allow to test pairing, even though the pairing info is not persisted when
15 // the app is restarted. 15 // the app is restarted.
16 16
17 NSError* WriteHostPreferencesToKeychain(NSData* data) { 17 NSError* WriteHostPreferencesToKeychain(NSData* data) {
18 NOTIMPLEMENTED(); 18 NOTIMPLEMENTED();
19 return nil; 19 return nil;
20 } 20 }
21 21
22 NSData* ReadHostPreferencesFromKeychain() { 22 NSData* ReadHostPreferencesFromKeychain() {
23 NOTIMPLEMENTED(); 23 NOTIMPLEMENTED();
24 return nil; 24 return nil;
25 } 25 }
26 26
27 } // namespace ios 27 } // namespace ios
28 } // namespace remoting 28 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/ios/host_preferences_persistence.h ('k') | remoting/ios/key_input.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698