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

Unified Diff: chrome/common/json_schema_validator_unittest_base.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
« no previous file with comments | « chrome/common/json_schema_validator.h ('k') | chrome/common/jstemplate_builder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/json_schema_validator_unittest_base.h
===================================================================
--- chrome/common/json_schema_validator_unittest_base.h (revision 92173)
+++ chrome/common/json_schema_validator_unittest_base.h (working copy)
@@ -7,9 +7,11 @@
#include "testing/gtest/include/gtest/gtest.h"
+namespace base {
class DictionaryValue;
class ListValue;
class Value;
+}
// Base class for unit tests for JSONSchemaValidator. There is currently only
// one implementation, JSONSchemaValidatorCPPTest.
@@ -29,12 +31,14 @@
protected:
virtual void ExpectValid(const std::string& test_source,
- Value* instance, DictionaryValue* schema,
- ListValue* types) = 0;
+ base::Value* instance,
+ base::DictionaryValue* schema,
+ base::ListValue* types) = 0;
virtual void ExpectNotValid(const std::string& test_source,
- Value* instance, DictionaryValue* schema,
- ListValue* types,
+ base::Value* instance,
+ base::DictionaryValue* schema,
+ base::ListValue* types,
const std::string& expected_error_path,
const std::string& expected_error_message) = 0;
« no previous file with comments | « chrome/common/json_schema_validator.h ('k') | chrome/common/jstemplate_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698