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

Side by Side Diff: remoting/webapp/crd/js/options_export.js

Issue 2671103002: Implement host settings migration. (Closed)
Patch Set: Created 3 years, 10 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/webapp/crd/js/background.js ('k') | remoting/webapp/crd/manifest.json.jinja2 » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 /** @suppress {duplicate} */
6 var remoting = remoting || {};
7
8 (function(){
9
10 'use strict';
11
12 /**
13 * @constructor
14 */
15 remoting.OptionsExporter = function() {
16 base.Ipc.getInstance().register('getSettings',
17 remoting.OptionsExporter.migrateSettings_,
18 true);
19 };
20
21 remoting.OptionsExporter.migrateSettings_ = function() {
22 var result = new base.Deferred();
23 chrome.storage.local.get('remoting-host-options', function(options) {
24 result.resolve(options);
25 })
26 return result.promise();
27 };
28
29
30 }());
OLDNEW
« no previous file with comments | « remoting/webapp/crd/js/background.js ('k') | remoting/webapp/crd/manifest.json.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698