// 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_BROWSER_UNINSTALL_REASON_H_ #define EXTENSIONS_BROWSER_UNINSTALL_REASON_H_ namespace extensions { // Do not remove/reorder these, as they are used in uninstall ping data and we // depend on their values being stable. enum UninstallReason { … }; // The source of an uninstall. Do *NOT* reorder or delete any of the named // values, as they are used in UMA. Put all new values above // NUM_UNINSTALL_SOURCES. enum UninstallSource { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_UNINSTALL_REASON_H_