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

Unified Diff: base/feature_list.cc

Issue 1847583003: Fix setComposingText when newCursorPosition != 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix setComposingText when newCursorPosition < 1 Created 4 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
Index: base/feature_list.cc
diff --git a/base/feature_list.cc b/base/feature_list.cc
index 2e7909862c1a77e3ca1422ffa000c4767da61341..aad3da658a97d23b0476fbc4557cd13c6086e1bd 100644
--- a/base/feature_list.cc
+++ b/base/feature_list.cc
@@ -36,9 +36,7 @@ bool IsValidFeatureOrFieldTrialName(const std::string& name) {
} // namespace
FeatureList::FeatureList()
- : initialized_(false),
- initialized_from_command_line_(false) {
-}
+ : initialized_(false), initialized_from_command_line_(false) {}
FeatureList::~FeatureList() {}

Powered by Google App Engine
This is Rietveld 408576698