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

Unified Diff: extensions/common/event_filter_unittest.cc

Issue 388963002: Get rid of the rest of CreateStringValue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad rebase Created 6 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 | « extensions/browser/value_store/value_store_unittest.cc ('k') | extensions/renderer/dom_activity_logger.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 0b1bd7b72ca59cad3ba11ce5c8d3a536032cdd3d..0ae063cbc5363c5e1e5b0d68f7150ee4c10f0733 100644
--- a/extensions/common/event_filter_unittest.cc
+++ b/extensions/common/event_filter_unittest.cc
@@ -30,7 +30,7 @@ class EventFilterUnittest : public testing::Test {
protected:
scoped_ptr<base::Value> HostSuffixDict(const std::string& host_suffix) {
scoped_ptr<base::DictionaryValue> dict(new DictionaryValue());
- dict->Set("hostSuffix", base::Value::CreateStringValue(host_suffix));
+ dict->Set("hostSuffix", new base::StringValue(host_suffix));
return scoped_ptr<base::Value>(dict.release());
}
« no previous file with comments | « extensions/browser/value_store/value_store_unittest.cc ('k') | extensions/renderer/dom_activity_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698