Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: components/json_schema/json_schema_validator_unittest_base.h

Issue 195193002: Add regular expression support in json_schema component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix comment Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/json_schema/json_schema_validator_unittest_base.h
diff --git a/components/json_schema/json_schema_validator_unittest_base.h b/components/json_schema/json_schema_validator_unittest_base.h
index 7b4854e21e87a0c7bfdd928175c81e01b0924277..4edb99432c282f8b323cd97cadb4db460d4f4f58 100644
--- a/components/json_schema/json_schema_validator_unittest_base.h
+++ b/components/json_schema/json_schema_validator_unittest_base.h
@@ -20,12 +20,7 @@ class Value;
// JSONSchemaValidatorJSTest that inherits from this.
class JSONSchemaValidatorTestBase : public testing::Test {
public:
- enum ValidatorType {
- CPP = 1,
- JS = 2
- };
-
- explicit JSONSchemaValidatorTestBase(ValidatorType type);
+ JSONSchemaValidatorTestBase();
void RunTests();
@@ -56,8 +51,6 @@ class JSONSchemaValidatorTestBase : public testing::Test {
void TestNumber();
void TestTypeClassifier();
void TestTypes();
-
- ValidatorType type_;
};
#endif // COMPONENTS_JSON_SCHEMA_JSON_SCHEMA_VALIDATOR_UNITTEST_BASE_H_

Powered by Google App Engine
This is Rietveld 408576698