// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MOJO_CORE_EMBEDDER_CONFIGURATION_H_ #define MOJO_CORE_EMBEDDER_CONFIGURATION_H_ #include <stddef.h> #include <stdint.h> namespace mojo { namespace core { // A set of configuration parameters that the Mojo system uses internally. The // configuration used can be overridden from the default by passing a // Configuration into |mojo::core::Init()|. See embedder.h. // // NOTE: Please ensure that this type remains a simple aggregate of POD fields. struct Configuration { … }; } // namespace core } // namespace mojo #endif // MOJO_CORE_EMBEDDER_CONFIGURATION_H_