Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / editing / SelectionStrategy.h
blobe3eb2a0746e95564c9aed8719d831c27050b1955
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SelectionStrategy_h
6 #define SelectionStrategy_h
8 namespace blink {
10 enum class SelectionStrategy {
11 // Always using CharacterGranularity
12 Character,
13 // Switches between WordGranularity and CharacterGranularity
14 // Depending on whether the selection or growing or shrinking
15 Direction,
18 } // namespace blink
20 #endif // SelectionStrategy_h