// 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 EXTENSIONS_COMMON_MESSAGE_BUNDLE_H_ #define EXTENSIONS_COMMON_MESSAGE_BUNDLE_H_ #include <stddef.h> #include <map> #include <memory> #include <string> #include <vector> #include "base/values.h" namespace extensions { // Contains localized extension messages for one locale. Any messages that the // locale does not provide are pulled from the default locale. class MessageBundle { … }; } // namespace extensions #endif // EXTENSIONS_COMMON_MESSAGE_BUNDLE_H_