changed_file_7.h 710 B

123456789101112131415161718192021222324252627282930313233
  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. mEntry3,
  18. mInfo1,
  19. mData3,
  20. mInvalid1,
  21. mError1,
  22. mFunction1,
  23. mInvalid2,
  24. mInvalid3,
  25. mInfo2,
  26. mInvalid4,
  27. mData4,
  28. mBoundary // Do not add below here
  29. };
  30. #endif