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

Side by Side Diff: base/prefs/pref_paths.h

Issue 11411159: base/prefs: Break the dependency in chrome_paths.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 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 BASE_PREFS_PREF_PATHS_H_
6 #define BASE_PREFS_PREF_PATHS_H_
7
8 #include "base/prefs/base_prefs_export.h"
9
10 namespace base {
11 namespace prefs {
12
13 enum {
14 PATH_START = 5000,
15
16 // Use only for unittests.
17 DIR_TEST_DATA,
Jói 2012/11/26 10:42:26 Have you seen any other paths that might get added
tfarina 2012/11/27 02:15:59 Done.
18
19 PATH_END
20 };
21
22 // Call once to register the provider for the path keys defined above.
23 BASE_PREFS_EXPORT void RegisterPathProvider();
24
25 } // namespace prefs
26 } // namespace base
27
28 #endif // BASE_PREFS_PREF_PATHS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698