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

Unified Diff: ui/aura/window_unittest.cc

Issue 8526020: aura: Track mouse button state. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years, 1 month 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/aura/desktop_unittest.cc ('k') | views/widget/native_widget_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window_unittest.cc
diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
index e41a39170573ce80e8c23ba72ccb879994f5e445..c5ad5ff58e0f68eb153904f378abc09ed21db40c 100644
--- a/ui/aura/window_unittest.cc
+++ b/ui/aura/window_unittest.cc
@@ -886,8 +886,8 @@ class WindowObserverTest : public WindowTest,
std::string result(
base::StringPrintf("name=%s old=%ld new=%ld",
property_name_.c_str(),
- old_property_value_,
- new_property_value_));
+ static_cast<long>(old_property_value_),
+ static_cast<long>(new_property_value_)));
property_name_.clear();
old_property_value_ = 0;
new_property_value_ = 0;
« no previous file with comments | « ui/aura/desktop_unittest.cc ('k') | views/widget/native_widget_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698