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

Unified Diff: extensions/common/event_filter_unittest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 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
« no previous file with comments | « extensions/browser/value_store/value_store_unittest.cc ('k') | extensions/common/extension_l10n_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/event_filter_unittest.cc
diff --git a/extensions/common/event_filter_unittest.cc b/extensions/common/event_filter_unittest.cc
index 6e96c991c149d03fd55086a8ff66d6da6d94fdb5..d51e16333f71da94e824163a3e67eb3cc19d495b 100644
--- a/extensions/common/event_filter_unittest.cc
+++ b/extensions/common/event_filter_unittest.cc
@@ -33,7 +33,7 @@ class EventFilterUnittest : public testing::Test {
protected:
std::unique_ptr<base::Value> HostSuffixDict(const std::string& host_suffix) {
std::unique_ptr<base::DictionaryValue> dict(new DictionaryValue());
- dict->Set("hostSuffix", new base::StringValue(host_suffix));
+ dict->Set("hostSuffix", new base::Value(host_suffix));
return std::unique_ptr<base::Value>(dict.release());
}
« no previous file with comments | « extensions/browser/value_store/value_store_unittest.cc ('k') | extensions/common/extension_l10n_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698