| 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;
|
|
|