| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 * | 6 * |
| 7 * TODO(epoger): Combine this with tools/image_expectations.h, or eliminate one
of the two. | 7 * TODO(epoger): Combine this with tools/image_expectations.h, or eliminate one
of the two. |
| 8 */ | 8 */ |
| 9 #ifndef gm_expectations_DEFINED | 9 #ifndef gm_expectations_DEFINED |
| 10 #define gm_expectations_DEFINED | 10 #define gm_expectations_DEFINED |
| 11 | 11 |
| 12 #include "gm.h" | 12 #include "gm.h" |
| 13 #include "SkBitmap.h" | 13 #include "SkBitmap.h" |
| 14 #include "SkBitmapHasher.h" | |
| 15 #include "SkData.h" | 14 #include "SkData.h" |
| 16 #include "SkJSONCPP.h" | 15 #include "SkJSONCPP.h" |
| 17 #include "SkOSFile.h" | 16 #include "SkOSFile.h" |
| 18 #include "SkRefCnt.h" | 17 #include "SkRefCnt.h" |
| 19 #include "SkStream.h" | 18 #include "SkStream.h" |
| 20 #include "SkTArray.h" | 19 #include "SkTArray.h" |
| 21 | 20 |
| 22 | 21 |
| 23 namespace skiagm { | 22 namespace skiagm { |
| 24 | 23 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 * Returns true if successful. | 219 * Returns true if successful. |
| 221 */ | 220 */ |
| 222 static bool Parse(const char *jsonPath, Json::Value *jsonRoot); | 221 static bool Parse(const char *jsonPath, Json::Value *jsonRoot); |
| 223 | 222 |
| 224 Json::Value fJsonRoot; | 223 Json::Value fJsonRoot; |
| 225 Json::Value fJsonExpectedResults; | 224 Json::Value fJsonExpectedResults; |
| 226 }; | 225 }; |
| 227 | 226 |
| 228 } | 227 } |
| 229 #endif | 228 #endif |
| OLD | NEW |