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

Side by Side Diff: apps/prefs.h

Issue 12095052: Move app_launcher.* out of chrome/browser/extensions and into apps/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved switches back Created 7 years, 10 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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698