changed_file_5.h 618 B

123456789101112131415161718192021222324252627
  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. mError1,
  21. mFunction1,
  22. mInfo2,
  23. mData4,
  24. #endif