blob: 5ae562b6d9c72a5f363f69a10905fe4e1d3115c2 [file] [log] [blame]
// Copyright 2013 The Chromium Authors
// 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 <string_view>
#include "base/location.h"
#include "base/task/current_thread.h"
namespace net {
SpdySessionTestTaskObserver::SpdySessionTestTaskObserver(
const std::string& file_name,
const std::string& function_name)
: file_name_(file_name), function_name_(function_name) {
base::CurrentThread::Get()->AddTaskObserver(this);
}
SpdySessionTestTaskObserver::~SpdySessionTestTaskObserver() {
base::CurrentThread::Get()->RemoveTaskObserver(this);
}
void SpdySessionTestTaskObserver::WillProcessTask(
const base::PendingTask& pending_task,
bool was_blocked_or_low_priority) {}
void SpdySessionTestTaskObserver::DidProcessTask(
const base::PendingTask& pending_task) {
if (std::string_view(pending_task.posted_from.file_name())
.ends_with(file_name_) &&
std::string_view(pending_task.posted_from.function_name())
.ends_with(function_name_)) {
++executed_count_;
}
}
} // namespace net