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

Side by Side Diff: base/environment.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/cpu.cc ('k') | base/event_recorder.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) 2011 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_ENVIRONMENT_H_ 5 #ifndef BASE_ENVIRONMENT_H_
6 #define BASE_ENVIRONMENT_H_ 6 #define BASE_ENVIRONMENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/base_api.h" 11 #include "base/base_api.h"
12 #include "base/basictypes.h" 12 #include "build/build_config.h"
13 13
14 namespace base { 14 namespace base {
15 15
16 namespace env_vars { 16 namespace env_vars {
17 17
18 #if defined(OS_POSIX) 18 #if defined(OS_POSIX)
19 extern const char kHome[]; 19 extern const char kHome[];
20 #endif 20 #endif
21 21
22 } // namespace env_vars 22 } // namespace env_vars
(...skipping 17 matching lines...) Expand all
40 virtual bool SetVar(const char* variable_name, 40 virtual bool SetVar(const char* variable_name,
41 const std::string& new_value) = 0; 41 const std::string& new_value) = 0;
42 42
43 // Returns true on success, otherwise returns false. 43 // Returns true on success, otherwise returns false.
44 virtual bool UnSetVar(const char* variable_name) = 0; 44 virtual bool UnSetVar(const char* variable_name) = 0;
45 }; 45 };
46 46
47 } // namespace base 47 } // namespace base
48 48
49 #endif // BASE_ENVIRONMENT_H_ 49 #endif // BASE_ENVIRONMENT_H_
OLDNEW
« no previous file with comments | « base/cpu.cc ('k') | base/event_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698