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

Unified Diff: cc/scheduler/scheduler_state_machine.cc

Issue 20182002: Make inttypes.h and similar macro usage C++11-friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: line Created 7 years, 5 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 | « build/common.gypi ('k') | chrome/browser/extensions/extension_protocols.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scheduler/scheduler_state_machine.cc
diff --git a/cc/scheduler/scheduler_state_machine.cc b/cc/scheduler/scheduler_state_machine.cc
index eed9f154fa672c2fa2c7db10f906ab82b361b4ec..3747c0b4a534096bc566e58dc4635e54ce396659 100644
--- a/cc/scheduler/scheduler_state_machine.cc
+++ b/cc/scheduler/scheduler_state_machine.cc
@@ -83,12 +83,12 @@ std::string SchedulerStateMachine::ToString() {
main_thread_needs_layer_textures_);
base::StringAppendF(&str, "inside_begin_frame_ = %d; ",
inside_begin_frame_);
- base::StringAppendF(&str, "last_frame_time_ = %"PRId64"; ",
+ base::StringAppendF(&str, "last_frame_time_ = %" PRId64 "; ",
(last_begin_frame_args_.frame_time - base::TimeTicks())
.InMilliseconds());
- base::StringAppendF(&str, "last_deadline_ = %"PRId64"; ",
+ base::StringAppendF(&str, "last_deadline_ = %" PRId64 "; ",
(last_begin_frame_args_.deadline - base::TimeTicks()).InMilliseconds());
- base::StringAppendF(&str, "last_interval_ = %"PRId64"; ",
+ base::StringAppendF(&str, "last_interval_ = %" PRId64 "; ",
last_begin_frame_args_.interval.InMilliseconds());
base::StringAppendF(&str, "visible_ = %d; ", visible_);
base::StringAppendF(&str, "can_start_ = %d; ", can_start_);
« no previous file with comments | « build/common.gypi ('k') | chrome/browser/extensions/extension_protocols.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698