changed_file_3.h 659 B

1234567891011121314151617181920212223242526272829
  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. mErrata1,
  21. mFunction1,
  22. mInfo2,
  23. mData4,
  24. mBoundary // Do not add below here
  25. };
  26. #endif