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

Unified Diff: components/policy/core/common/preg_parser_unittest.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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 | « components/policy/core/common/preg_parser.cc ('k') | components/policy/core/common/registry_dict.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/core/common/preg_parser_unittest.cc
diff --git a/components/policy/core/common/preg_parser_unittest.cc b/components/policy/core/common/preg_parser_unittest.cc
index 153f75ae9273bf51a95c827d85ee71c07f7b1231..e29c9c4b530b4136db9b5763e114b583e2d4614b 100644
--- a/components/policy/core/common/preg_parser_unittest.cc
+++ b/components/policy/core/common/preg_parser_unittest.cc
@@ -60,8 +60,7 @@ testing::AssertionResult RegistryDictEquals(const RegistryDict& a,
void SetInteger(RegistryDict* dict,
const std::string& name,
int value) {
- dict->SetValue(
- name, base::WrapUnique<base::Value>(new base::FundamentalValue(value)));
+ dict->SetValue(name, base::WrapUnique<base::Value>(new base::Value(value)));
}
void SetString(RegistryDict* dict,
« no previous file with comments | « components/policy/core/common/preg_parser.cc ('k') | components/policy/core/common/registry_dict.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698