OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 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_APPS_PREFS_H_ | |
tfarina
2013/02/01 15:11:24
APPS_PREFS_H_
benwells
2013/02/08 07:18:00
Wow, yeah. Presubmit didn't catch it?!?
| |
6 #define CHROME_APPS_PREFS_H_ | |
7 | |
8 #include "base/basictypes.h" | |
tfarina
2013/02/01 15:11:24
not needed
benwells
2013/02/08 07:18:00
Done.
| |
9 | |
10 class PrefServiceSimple; | |
11 | |
12 namespace apps { | |
13 | |
14 namespace prefs { | |
15 | |
16 extern const char kAppLauncherIsEnabled[]; | |
tfarina
2013/02/01 15:11:24
can we move this to a apps/apps_constants.h or app
benwells
2013/02/08 07:18:00
Done.
| |
17 | |
18 } // namespace prefs | |
19 | |
20 // Register preferences for the apps system. | |
21 void RegisterPrefs(PrefServiceSimple* pref_service); | |
22 | |
23 } // namespace apps | |
24 | |
25 #endif // CHROME_APPS_PREFS_H_ | |
OLD | NEW |