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

Unified Diff: ui/base/win/tsf_text_store_unittest.cc

Issue 10942005: Add TS_SS_TRANSITORY flag to the return value of TsfTextStore::GetStatus. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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 | « ui/base/win/tsf_text_store.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/win/tsf_text_store_unittest.cc
diff --git a/ui/base/win/tsf_text_store_unittest.cc b/ui/base/win/tsf_text_store_unittest.cc
index 3b3419cd801eeadf4c966e9820fff513cd5cb866..e6154f14201539097ab60cbdeef2980c389c9cf3 100644
--- a/ui/base/win/tsf_text_store_unittest.cc
+++ b/ui/base/win/tsf_text_store_unittest.cc
@@ -285,7 +285,7 @@ TEST_F(TsfTextStoreTest, GetStatusTest) {
TS_STATUS status;
EXPECT_EQ(S_OK, text_store_->GetStatus(&status));
EXPECT_EQ(0, status.dwDynamicFlags);
- EXPECT_EQ(TS_SS_NOHIDDENTEXT, status.dwStaticFlags);
+ EXPECT_EQ(TS_SS_TRANSITORY | TS_SS_NOHIDDENTEXT, status.dwStaticFlags);
}
« no previous file with comments | « ui/base/win/tsf_text_store.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698