| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ |
| 6 #define CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | 6 #define CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 namespace policy { | 9 namespace policy { |
| 10 | 10 |
| 11 // Work in progress: http://crosbug.com/25463 | 11 // Work in progress: http://crosbug.com/25463 |
| 12 class AppPackUpdater { | 12 class AppPackUpdater { |
| 13 public: | 13 public: |
| 14 // Keys for the entries in the KioskModeAppPack dictionary policy. | 14 // Keys for the entries in the KioskModeAppPack dictionary policy. |
| 15 static const char kExtensionId[]; | 15 static const char kExtensionId[]; |
| 16 static const char kUpdateUrl[]; | 16 static const char kUpdateUrl[]; |
| 17 static const char kKeyChecksum[]; | 17 static const char kOnlineOnly[]; |
| 18 }; | 18 }; |
| 19 | 19 |
| 20 } // namespace policy | 20 } // namespace policy |
| 21 | 21 |
| 22 #endif // CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | 22 #endif // CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ |
| OLD | NEW |