// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/raster/lcd_text_disallowed_reason.h" #include <iostream> #include "base/notreached.h" namespace cc { const char* LCDTextDisallowedReasonToString(LCDTextDisallowedReason reason) { … } std::ostream& operator<<(std::ostream& os, LCDTextDisallowedReason reason) { … } } // namespace cc