Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: components/arc/ime/arc_ime_bridge.h

Issue 2136933002: Add ime.ExtendSelectionAndDelete Mojo RPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ime.ExtendSelectionAndDelete Mojo RPC Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/arc/common/ime.mojom ('k') | components/arc/ime/arc_ime_bridge_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_ARC_IME_ARC_IME_BRIDGE_H_ 5 #ifndef COMPONENTS_ARC_IME_ARC_IME_BRIDGE_H_
6 #define COMPONENTS_ARC_IME_ARC_IME_BRIDGE_H_ 6 #define COMPONENTS_ARC_IME_ARC_IME_BRIDGE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
10 #include "ui/base/ime/text_input_type.h" 10 #include "ui/base/ime/text_input_type.h"
(...skipping 22 matching lines...) Expand all
33 virtual void OnCancelComposition() = 0; 33 virtual void OnCancelComposition() = 0;
34 virtual void ShowImeIfNeeded() = 0; 34 virtual void ShowImeIfNeeded() = 0;
35 }; 35 };
36 36
37 // Serializes and sends IME related requests through IPCs. 37 // Serializes and sends IME related requests through IPCs.
38 virtual void SendSetCompositionText( 38 virtual void SendSetCompositionText(
39 const ui::CompositionText& composition) = 0; 39 const ui::CompositionText& composition) = 0;
40 virtual void SendConfirmCompositionText() = 0; 40 virtual void SendConfirmCompositionText() = 0;
41 virtual void SendInsertText(const base::string16& text) = 0; 41 virtual void SendInsertText(const base::string16& text) = 0;
42 virtual void SendOnKeyboardBoundsChanging(const gfx::Rect& new_bounds) = 0; 42 virtual void SendOnKeyboardBoundsChanging(const gfx::Rect& new_bounds) = 0;
43 virtual void SendExtendSelectionAndDelete(size_t before, size_t after) = 0;
43 44
44 protected: 45 protected:
45 ArcImeBridge() {} 46 ArcImeBridge() {}
46 47
47 private: 48 private:
48 DISALLOW_COPY_AND_ASSIGN(ArcImeBridge); 49 DISALLOW_COPY_AND_ASSIGN(ArcImeBridge);
49 }; 50 };
50 51
51 } // namespace arc 52 } // namespace arc
52 53
53 #endif // COMPONENTS_ARC_IME_ARC_IME_BRIDGE_H_ 54 #endif // COMPONENTS_ARC_IME_ARC_IME_BRIDGE_H_
OLDNEW
« no previous file with comments | « components/arc/common/ime.mojom ('k') | components/arc/ime/arc_ime_bridge_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698