// Copyright 2016 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_ALIAS_H_ #define EXTENSIONS_COMMON_ALIAS_H_ namespace extensions { // Information about an alias. // Main usage: describing aliases for extension features (extension permissions, // APIs), which is useful for ensuring backward-compatibility of extension // features when they get renamed. Old feature name can be defined as an alias // for the new feature name - this would ensure that the extensions using the // old feature name don't break. struct Alias { … }; } // namespace extensions #endif // EXTENSIONS_COMMON_ALIAS_H_