// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "extensions/test/result_catcher.h" #include "base/run_loop.h" #include "content/public/test/test_utils.h" namespace extensions { ResultCatcher::ResultCatcher() : … { … } ResultCatcher::~ResultCatcher() = default; bool ResultCatcher::GetNextResult() { … } void ResultCatcher::OnTestPassed(content::BrowserContext* browser_context) { … } void ResultCatcher::OnTestFailed(content::BrowserContext* browser_context, const std::string& message) { … } } // namespace extensions