Home | History | Annotate | Download | only in shims

Lines Matching defs:Environment

29 // Environment access utilities.
30 class Environment {
32 virtual ~Environment();
34 // This is a singleton -- use Environment::GetInstance()->Foo().
35 static Environment* GetInstance();
37 // Sets |value| to the value of environment variable |name| and returns
41 // Parses and returns the environment as a name->value string map.
45 Environment();
48 friend struct base::DefaultLazyInstanceTraits<Environment>;
50 DISALLOW_COPY_AND_ASSIGN(Environment);