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

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: 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..7406406a29b28c9d26d9bf03be2f421c546b9a0b 100644
--- a/ui/aura/window_unittest.cc
+++ b/ui/aura/window_unittest.cc
@@ -4,6 +4,8 @@
#include "ui/aura/window.h"
+#include <inttypes.h>
+
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/stringprintf.h"
@@ -884,7 +886,7 @@ class WindowObserverTest : public WindowTest,
// OnPropertyChanged callback.
std::string PropertyChangeInfoAndClear() {
std::string result(
- base::StringPrintf("name=%s old=%ld new=%ld",
Daniel Erat 2011/11/11 00:25:57 this was breaking compilation for 32-bit. i'm not
+ base::StringPrintf("name=%s old=%" PRIdPTR " new=%" PRIdPTR,
property_name_.c_str(),
old_property_value_,
new_property_value_));
« 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