blob: d901cf64c41893f0615102d38d250a5fc3cb95a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/spdy/spdy_session_test_util.h"
#include "base/location.h"
#include "base/strings/string_util.h"
namespace net {
SpdySessionTestTaskObserver::SpdySessionTestTaskObserver(
const std::string& file_name,
const std::string& function_name)
: executed_count_(0),
file_name_(file_name),
function_name_(function_name) {
base::MessageLoop::current()->AddTaskObserver(this);
}
SpdySessionTestTaskObserver::~SpdySessionTestTaskObserver() {
base::MessageLoop::current()->RemoveTaskObserver(this);
}
void SpdySessionTestTaskObserver::WillProcessTask(
const base::PendingTask& pending_task) {
}
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)) {
++executed_count_;
}
}
} // namespace net
|