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

Unified Diff: win8/metro_driver/ime/text_store.cc

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 years, 6 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 | « win8/metro_driver/file_picker_ash.cc ('k') | win8/metro_driver/metro_driver_win7.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/ime/text_store.cc
diff --git a/win8/metro_driver/ime/text_store.cc b/win8/metro_driver/ime/text_store.cc
index eff30b7abe15b038d345c4531fa873fcb42669e4..6466e9f366a423f6113c4392e5022045b2a64c42 100644
--- a/win8/metro_driver/ime/text_store.cc
+++ b/win8/metro_driver/ime/text_store.cc
@@ -22,7 +22,6 @@ const TsViewCookie kViewCookie = 1;
TextStore::TextStore()
: text_store_acp_sink_mask_(0),
window_handle_(NULL),
- delegate_(NULL),
committed_size_(0),
selection_start_(0),
selection_end_(0),
@@ -30,7 +29,8 @@ TextStore::TextStore()
current_lock_type_(0),
category_manager_(NULL),
display_attribute_manager_(NULL),
- input_scope_(NULL) {
+ input_scope_(NULL),
+ delegate_(NULL) {
}
TextStore::~TextStore() {
« no previous file with comments | « win8/metro_driver/file_picker_ash.cc ('k') | win8/metro_driver/metro_driver_win7.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698