Skip to content

Commit

Permalink
Add MinVersion restriction to SetSelection.
Browse files Browse the repository at this point in the history
I forgot to add it in crrev.com/c/1362778.

Bug: 908800
Change-Id: I2c6b91261cbbaa6f542556f10d5e12c11be95ca2
Reviewed-on: https://chromium-review.googlesource.com/c/1378152
Reviewed-by: Mattias Nissler <mnissler@chromium.org>
Commit-Queue: Yuichiro Hanada <yhanada@chromium.org>
Cr-Commit-Position: refs/heads/master@{#617324}
  • Loading branch information
Yuichiro Hanada authored and Commit Bot committed Dec 18, 2018
1 parent a80ae49 commit 0109cc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/arc/common/input_method_manager.mojom
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Next MinVersion: 5
// Next MinVersion: 6

module arc.mojom;

Expand Down Expand Up @@ -58,7 +58,7 @@ struct TextInputState {
// It is generated for each focused text field and passed to Android.
// This interface will be closed when the focus moves to another text field.
//
// Next method ID: 5
// Next method ID: 6
[MinVersion=2]
interface InputConnection {
// Commits text to the focused text field and set the new cursor position.
Expand All @@ -83,7 +83,7 @@ interface InputConnection {
[MinVersion=3] Range? new_selection_range);

// Selects the given UTF-16 based character range.
SetSelection@5(Range new_selection_range);
[MinVersion=5] SetSelection@5(Range new_selection_range);
};

// This interface is called by container when Android's InputMethodManager state
Expand Down

0 comments on commit 0109cc4

Please sign in to comment.