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

Unified Diff: components/sync/engine_impl/js_mutation_event_observer.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 | « components/sync/base/model_type.h ('k') | components/sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine_impl/js_mutation_event_observer.cc
diff --git a/components/sync/engine_impl/js_mutation_event_observer.cc b/components/sync/engine_impl/js_mutation_event_observer.cc
index a4af4da76b4099508d45c893e2915cab342311c8..2554b1aafa2fb712a2a37bbad7a21dba15d0eb1a 100644
--- a/components/sync/engine_impl/js_mutation_event_observer.cc
+++ b/components/sync/engine_impl/js_mutation_event_observer.cc
@@ -64,7 +64,7 @@ void JsMutationEventObserver::OnChangesApplied(
changes_value = changes_list;
} else {
changes_value =
- new base::StringValue(base::SizeTToString(changes_size) + " changes");
+ new base::Value(base::SizeTToString(changes_size) + " changes");
}
details.Set("changes", changes_value);
HandleJsEvent(FROM_HERE, "onChangesApplied", JsEventDetails(&details));
« no previous file with comments | « components/sync/base/model_type.h ('k') | components/sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698