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

Side by Side Diff: base/base_paths.h

Issue 1446363003: Deleted OS_WIN and all Windows specific files from base. (Closed) Base URL: https://github.com/domokit/mojo.git@base_tests
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « base/atomicops_internals_x86_msvc.h ('k') | base/base_paths_win.h » ('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) 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 BASE_BASE_PATHS_H_ 5 #ifndef BASE_BASE_PATHS_H_
6 #define BASE_BASE_PATHS_H_ 6 #define BASE_BASE_PATHS_H_
7 7
8 // This file declares path keys for the base module. These can be used with 8 // This file declares path keys for the base module. These can be used with
9 // the PathService to access various special directories and files. 9 // the PathService to access various special directories and files.
10 10
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 12
13 #if defined(OS_WIN) 13 #if defined(OS_MACOSX)
14 #include "base/base_paths_win.h"
15 #elif defined(OS_MACOSX)
16 #include "base/base_paths_mac.h" 14 #include "base/base_paths_mac.h"
17 #elif defined(OS_ANDROID) 15 #elif defined(OS_ANDROID)
18 #include "base/base_paths_android.h" 16 #include "base/base_paths_android.h"
19 #endif 17 #endif
20 18
21 #if defined(OS_POSIX) 19 #if defined(OS_POSIX)
22 #include "base/base_paths_posix.h" 20 #include "base/base_paths_posix.h"
23 #endif 21 #endif
24 22
25 namespace base { 23 namespace base {
(...skipping 20 matching lines...) Expand all
46 DIR_USER_DESKTOP, // The current user's Desktop. 44 DIR_USER_DESKTOP, // The current user's Desktop.
47 45
48 DIR_TEST_DATA, // Used only for testing. 46 DIR_TEST_DATA, // Used only for testing.
49 47
50 PATH_END 48 PATH_END
51 }; 49 };
52 50
53 } // namespace base 51 } // namespace base
54 52
55 #endif // BASE_BASE_PATHS_H_ 53 #endif // BASE_BASE_PATHS_H_
OLDNEW
« no previous file with comments | « base/atomicops_internals_x86_msvc.h ('k') | base/base_paths_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698