blob: 964bebed418607dfa53741f985915de67c0831b4 [file] [log] [blame]
// Copyright 2017 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.
#ifndef TextJustify_h
#define TextJustify_h
namespace blink {
enum class TextJustify : unsigned {
kAuto = 0x0,
kNone = 0x1,
kInterWord = 0x2,
kDistribute = 0x3
};
} // namespace blink
#endif // TextJustify_h