blob: 1aead41132235066e3e60e238d9169b4372ab688 [file] [log] [blame]
// Copyright 2018 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 "chrome/browser/safe_browsing/chrome_cleaner/chrome_cleaner_controller_win.h"
namespace safe_browsing {
using UserResponse = ChromeCleanerController::UserResponse;
// Keep the printable names of these enums short since they're used in tests
// with very long parameter lists.
//
std::ostream& operator<<(std::ostream& out,
ChromeCleanerController::State state) {
return out << "State" << static_cast<int>(state);
}
std::ostream& operator<<(std::ostream& out, UserResponse response) {
return out << "Resp" << static_cast<int>(response);
}
} // namespace safe_browsing