You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
663 B
26 lines
663 B
// Copyright 2014 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_CORE_CONFIGURATION_H_
|
|
#define MOJO_CORE_CONFIGURATION_H_
|
|
|
|
#include "mojo/core/embedder/configuration.h"
|
|
#include "mojo/core/system_impl_export.h"
|
|
|
|
namespace mojo {
|
|
namespace core {
|
|
|
|
namespace internal {
|
|
MOJO_SYSTEM_IMPL_EXPORT extern Configuration g_configuration;
|
|
} // namespace internal
|
|
|
|
MOJO_SYSTEM_IMPL_EXPORT inline const Configuration& GetConfiguration() {
|
|
return internal::g_configuration;
|
|
}
|
|
|
|
} // namespace core
|
|
} // namespace mojo
|
|
|
|
#endif // MOJO_CORE_CONFIGURATION_H_
|