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

Side by Side Diff: base/base_paths.h

Issue 6759017: iwyu: Cleanup in the following files: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright again. Created 9 years, 8 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 | « base/atomicops_unittest.cc ('k') | base/base_paths_linux.cc » ('j') | no next file with comments »
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 "base/basictypes.h" 12 #include "build/build_config.h"
13
13 #if defined(OS_WIN) 14 #if defined(OS_WIN)
14 #include "base/base_paths_win.h" 15 #include "base/base_paths_win.h"
15 #elif defined(OS_MACOSX) 16 #elif defined(OS_MACOSX)
16 #include "base/base_paths_mac.h" 17 #include "base/base_paths_mac.h"
17 #endif 18 #endif
18 19
19 namespace base { 20 namespace base {
20 21
21 enum { 22 enum {
22 PATH_START = 0, 23 PATH_START = 0,
(...skipping 16 matching lines...) Expand all
39 // This is $XDG_CACHE_HOME on Linux and 40 // This is $XDG_CACHE_HOME on Linux and
40 // ~/Library/Caches on Mac. 41 // ~/Library/Caches on Mac.
41 #endif 42 #endif
42 43
43 PATH_END 44 PATH_END
44 }; 45 };
45 46
46 } // namespace base 47 } // namespace base
47 48
48 #endif // BASE_BASE_PATHS_H_ 49 #endif // BASE_BASE_PATHS_H_
OLDNEW
« no previous file with comments | « base/atomicops_unittest.cc ('k') | base/base_paths_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698