Commit 0f751c73 authored by Raul Tambre's avatar Raul Tambre Committed by Commit Bot

//mojo: Convert base::(U)Int(64)ToString(16) to NumberToString(16)

The former non-overloaded variants are deprecated.

This is a mechanical change; there is no intended behavior change.

Bug: 929827
Change-Id: I51ed03781d7374daa3e30c62e8375192f5d60862
Reviewed-on: https://chromium-review.googlesource.com/c/1461379
Auto-Submit: Raul Tambre <raul@tambre.ee>
Commit-Queue: Scott Violet <sky@chromium.org>
Reviewed-by: default avatarScott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#630636}
parent f0e51730
...@@ -45,7 +45,7 @@ class MessageDumper : public mojo::MessageReceiver { ...@@ -45,7 +45,7 @@ class MessageDumper : public mojo::MessageReceiver {
bool Accept(mojo::Message* message) override { bool Accept(mojo::Message* message) override {
base::FilePath path = directory_.Append(FILE_PATH_LITERAL("message_") + base::FilePath path = directory_.Append(FILE_PATH_LITERAL("message_") +
base::IntToString(count_++) + base::NumberToString(count_++) +
FILE_PATH_LITERAL(".mojomsg")); FILE_PATH_LITERAL(".mojomsg"));
base::File file(path, base::File file(path,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment