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

Side by Side Diff: base/base_paths.h

Issue 6733031: Base: A few more files using BASE_API (for base.dll) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 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
« no previous file with comments | « no previous file | base/cpu.h » ('j') | base/cpu.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 BASE_BASE_PATHS_H_ 5 #ifndef BASE_BASE_PATHS_H_
6 #define BASE_BASE_PATHS_H_ 6 #define BASE_BASE_PATHS_H_
7 #pragma once 7 #pragma once
8 8
9 // This file declares path keys for the base module. These can be used with 9 // This file declares path keys for the base module. These can be used with
10 // the PathService to access various special directories and files. 10 // the PathService to access various special directories and files.
11 11
12 #include "build/build_config.h"
wtc 2011/03/25 17:35:42 I suspect that basictypes.h already includes build
rvargas (doing something else) 2011/03/25 17:59:56 I guess I should not be touching this file at all.
13
12 #include "base/basictypes.h" 14 #include "base/basictypes.h"
13 #if defined(OS_WIN) 15 #if defined(OS_WIN)
14 #include "base/base_paths_win.h" 16 #include "base/base_paths_win.h"
15 #elif defined(OS_MACOSX) 17 #elif defined(OS_MACOSX)
16 #include "base/base_paths_mac.h" 18 #include "base/base_paths_mac.h"
17 #endif 19 #endif
18 20
19 namespace base { 21 namespace base {
20 22
21 enum { 23 enum {
(...skipping 17 matching lines...) Expand all
39 // This is $XDG_CACHE_HOME on Linux and 41 // This is $XDG_CACHE_HOME on Linux and
40 // ~/Library/Caches on Mac. 42 // ~/Library/Caches on Mac.
41 #endif 43 #endif
42 44
43 PATH_END 45 PATH_END
44 }; 46 };
45 47
46 } // namespace base 48 } // namespace base
47 49
48 #endif // BASE_BASE_PATHS_H_ 50 #endif // BASE_BASE_PATHS_H_
OLDNEW
« no previous file with comments | « no previous file | base/cpu.h » ('j') | base/cpu.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698