| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_COMMON_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ | 5 #ifndef COMPONENTS_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ |
| 6 #define CHROME_COMMON_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ | 6 #define COMPONENTS_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ |
| 7 | 7 |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 namespace base { | 10 namespace base { |
| 11 class DictionaryValue; | 11 class DictionaryValue; |
| 12 class ListValue; | 12 class ListValue; |
| 13 class Value; | 13 class Value; |
| 14 } | 14 } |
| 15 | 15 |
| 16 // Base class for unit tests for JSONSchemaValidator. There is currently only | 16 // Base class for unit tests for JSONSchemaValidator. There is currently only |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 void TestArrayTuple(); | 53 void TestArrayTuple(); |
| 54 void TestArrayNonTuple(); | 54 void TestArrayNonTuple(); |
| 55 void TestString(); | 55 void TestString(); |
| 56 void TestNumber(); | 56 void TestNumber(); |
| 57 void TestTypeClassifier(); | 57 void TestTypeClassifier(); |
| 58 void TestTypes(); | 58 void TestTypes(); |
| 59 | 59 |
| 60 ValidatorType type_; | 60 ValidatorType type_; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 #endif // CHROME_COMMON_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ | 63 #endif // COMPONENTS_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_ |
| OLD | NEW |