diff options
Diffstat (limited to 'mojo/public/utility/environment.h')
-rw-r--r-- | mojo/public/utility/environment.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/mojo/public/utility/environment.h b/mojo/public/utility/environment.h deleted file mode 100644 index e7ea6a7..0000000 --- a/mojo/public/utility/environment.h +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright 2013 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef MOJO_PUBLIC_UTILITY_ENVIRONMENT_H_ -#define MOJO_PUBLIC_UTILITY_ENVIRONMENT_H_ - -#include "mojo/public/system/macros.h" - -namespace mojo { - -namespace internal { -class BindingsSupportImpl; -} // namespace internal - -class RunLoop; - -// Use Environment to cofigure state. -class Environment { - public: - Environment(); - ~Environment(); - - private: - internal::BindingsSupportImpl* bindings_support_; - - MOJO_DISALLOW_COPY_AND_ASSIGN(Environment); -}; - -} // namespace mojo - -#endif // MOJO_PUBLIC_UTILITY_ENVIRONMENT_H_ |