OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | |
6 #define CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | |
7 #pragma once | |
8 | |
9 namespace policy { | |
10 | |
11 // Work in progress: http://crosbug.com/25463 | |
12 class AppPackUpdater { | |
pastarmovj
2012/02/21 14:06:40
I guess this class is going to grow beyond a conta
Joao da Silva
2012/02/21 15:24:49
It a big class :-) This is the bare minimum for th
| |
13 public: | |
14 // Keys for the entries in the KioskModeAppPack dictionary policy. | |
15 static const char kExtensionId[]; | |
16 static const char kUpdateUrl[]; | |
17 static const char kKeyChecksum[]; | |
18 }; | |
19 | |
20 } // namespace policy | |
21 | |
22 #endif // CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | |
OLD | NEW |