Chromium Code Reviews| Index: gm/gm_error.h |
| =================================================================== |
| --- gm/gm_error.h (revision 8538) |
| +++ gm/gm_error.h (working copy) |
| @@ -26,6 +26,7 @@ |
| // or off (as long as the number of these errors is 0). |
| kNoGpuContext_ErrorType, |
| + kIntentionallySkipped_ErrorType, |
|
epoger
2013/04/09 15:20:40
patchset 3 adds kIntentionallySkipped_ErrorType, b
|
| kRenderModeMismatch_ErrorType, |
| kExpectationsMismatch_ErrorType, |
| kMissingExpectations_ErrorType, |
| @@ -40,6 +41,8 @@ |
| switch(type) { |
| case kNoGpuContext_ErrorType: |
| return "NoGpuContext"; |
| + case kIntentionallySkipped_ErrorType: |
| + return "IntentionallySkipped"; |
| case kRenderModeMismatch_ErrorType: |
| return "RenderModeMismatch"; |
| case kExpectationsMismatch_ErrorType: |