blob: 7a2f730ea4e6e3d980e1315713791a3456cbb0b4 [file] [log] [blame]
// Copyright 2020 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 "third_party/blink/renderer/platform/text/writing_direction_mode.h"
namespace blink {
std::ostream& operator<<(std::ostream& ostream,
const WritingDirectionMode& writing_direction) {
return ostream << writing_direction.GetWritingMode() << " "
<< writing_direction.Direction();
}
} // namespace blink