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

Unified Diff: net/spdy/spdy_session_test_util.cc

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 9 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 | « net/spdy/spdy_session.cc ('k') | net/ssl/channel_id_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session_test_util.cc
diff --git a/net/spdy/spdy_session_test_util.cc b/net/spdy/spdy_session_test_util.cc
index d901cf64c41893f0615102d38d250a5fc3cb95a5..36e4c57f9f126f3ceb22e6a71022c51a3e3752b8 100644
--- a/net/spdy/spdy_session_test_util.cc
+++ b/net/spdy/spdy_session_test_util.cc
@@ -28,9 +28,10 @@ void SpdySessionTestTaskObserver::WillProcessTask(
void SpdySessionTestTaskObserver::DidProcessTask(
const base::PendingTask& pending_task) {
- if (EndsWith(pending_task.posted_from.file_name(), file_name_, true) &&
- EndsWith(pending_task.posted_from.function_name(), function_name_,
- true)) {
+ if (base::EndsWith(pending_task.posted_from.file_name(), file_name_,
+ base::CompareCase::SENSITIVE) &&
+ base::EndsWith(pending_task.posted_from.function_name(), function_name_,
+ base::CompareCase::SENSITIVE)) {
++executed_count_;
}
}
« no previous file with comments | « net/spdy/spdy_session.cc ('k') | net/ssl/channel_id_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698