| 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_UI_ASH_CHROME_LAUNCHER_PREFS_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ | 6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace base { | 10 namespace base { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 extern const char kPinnedAppsPrefPinnedByPolicy[]; | 24 extern const char kPinnedAppsPrefPinnedByPolicy[]; |
| 25 | 25 |
| 26 // Values used for prefs::kShelfAutoHideBehavior. | 26 // Values used for prefs::kShelfAutoHideBehavior. |
| 27 extern const char kShelfAutoHideBehaviorAlways[]; | 27 extern const char kShelfAutoHideBehaviorAlways[]; |
| 28 extern const char kShelfAutoHideBehaviorNever[]; | 28 extern const char kShelfAutoHideBehaviorNever[]; |
| 29 | 29 |
| 30 // Values used for prefs::kShelfAlignment. | 30 // Values used for prefs::kShelfAlignment. |
| 31 extern const char kShelfAlignmentBottom[]; | 31 extern const char kShelfAlignmentBottom[]; |
| 32 extern const char kShelfAlignmentLeft[]; | 32 extern const char kShelfAlignmentLeft[]; |
| 33 extern const char kShelfAlignmentRight[]; | 33 extern const char kShelfAlignmentRight[]; |
| 34 extern const char kShelfAlignmentTop[]; | |
| 35 | 34 |
| 36 void RegisterChromeLauncherUserPrefs( | 35 void RegisterChromeLauncherUserPrefs( |
| 37 user_prefs::PrefRegistrySyncable* registry); | 36 user_prefs::PrefRegistrySyncable* registry); |
| 38 | 37 |
| 39 base::DictionaryValue* CreateAppDict(const std::string& app_id); | 38 base::DictionaryValue* CreateAppDict(const std::string& app_id); |
| 40 | 39 |
| 41 } // namespace ash | 40 } // namespace ash |
| 42 | 41 |
| 43 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ | 42 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| OLD | NEW |