Bumping manifests a=b2g-bump
[gecko.git] / layout / base / CaretAssociationHint.h
blob52bb5ba5b024e713c6eb9b0f884ec89a068dda23
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef CaretAssociationHint_h___
6 #define CaretAssociationHint_h___
8 namespace mozilla {
10 /**
11 * Hint whether a caret is associated with the content before a
12 * given character offset (ASSOCIATE_BEFORE), or with the content after a given
13 * character offset (ASSOCIATE_AFTER).
15 enum CaretAssociationHint {
16 CARET_ASSOCIATE_BEFORE,
17 CARET_ASSOCIATE_AFTER
22 #endif