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

Unified Diff: mojo/edk/system/message_pipe_perftest.cc

Issue 1180693002: Update from https://crrev.com/333737 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 6 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 | « mojo/edk/js/handle.h ('k') | mojo/go/go.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/message_pipe_perftest.cc
diff --git a/mojo/edk/system/message_pipe_perftest.cc b/mojo/edk/system/message_pipe_perftest.cc
index 23877823d326d103ac0e6cbcb7c933d046c38448..3b22480f15f466f6e12564be13252c304b136112 100644
--- a/mojo/edk/system/message_pipe_perftest.cc
+++ b/mojo/edk/system/message_pipe_perftest.cc
@@ -40,7 +40,7 @@ class MultiprocessMessagePipePerfTest
void SetUpMeasurement(int message_count, size_t message_size) {
message_count_ = message_count;
message_size_ = message_size;
- payload_ = Pickle();
+ payload_ = base::Pickle();
payload_.WriteString(std::string(message_size, '*'));
read_buffer_.resize(message_size * 2);
}
@@ -86,7 +86,7 @@ class MultiprocessMessagePipePerfTest
private:
int message_count_;
size_t message_size_;
- Pickle payload_;
+ base::Pickle payload_;
std::string read_buffer_;
scoped_ptr<base::PerfTimeLogger> perf_logger_;
};
« no previous file with comments | « mojo/edk/js/handle.h ('k') | mojo/go/go.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698