// 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 "third_party/blink/renderer/platform/graphics/paint_invalidation_reason.h" #include <ostream> #include "base/notreached.h" namespace blink { static_assert …; const char* PaintInvalidationReasonToString(PaintInvalidationReason reason) { … } std::ostream& operator<<(std::ostream& out, PaintInvalidationReason reason) { … } } // namespace blink