changed_file_8.h 672 B

123456789101112131415161718192021222324252627282930
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef MOCK_ENUM_H
  5. #define MOCK_ENUM_H
  6. // Here is our mock enum. Beyond testing it is completely meaningless.
  7. // MockEnum follows strict rules for valid modifications:
  8. // 1. NO reordering of entries
  9. // 2. NO deletions of entries
  10. // 3. New entries must be added just before mBoundary, never after
  11. //
  12. enum MockEnum {
  13. mEntry1,
  14. mEntry2,
  15. mData1,
  16. mData2,
  17. mInsertion,
  18. mEntry3,
  19. mInfo1,
  20. mData3,
  21. mError1,
  22. mFunction1,
  23. mInfo2,
  24. mData4,
  25. mBoundary // Do not add below here
  26. };
  27. #endif