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

Side by Side Diff: chrome/browser/chromeos/app_mode/kiosk_app_external_loader.cc

Issue 300843013: Install and launch kiosk app from cached crx file at start up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove the useless offline_enabled_app_profile testing data. Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 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 #include "chrome/browser/chromeos/app_mode/kiosk_app_external_loader.h"
6
7 #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h"
8
9 namespace chromeos {
10
11 KioskAppExternalLoader::KioskAppExternalLoader() {
12 }
13
14 KioskAppExternalLoader::~KioskAppExternalLoader() {
15 }
16
17 void KioskAppExternalLoader::SetCurrentAppExtensions(
18 scoped_ptr<base::DictionaryValue> prefs) {
19 kiosk_apps_.Swap(prefs.get());
20 StartLoading();
21 }
22
23 void KioskAppExternalLoader::StartLoading() {
24 prefs_.reset(kiosk_apps_.DeepCopy());
25 LoadFinished();
26 }
27
28 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698