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

Side by Side Diff: ppapi/cpp/dev/text_input_dev.h

Issue 7621010: Never submit: tentative Pepper IME. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: snapshot. Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/c/ppb_input_event.h ('k') | ppapi/cpp/dev/text_input_dev.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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.
4
5 #ifndef PPAPI_CPP_DEV_TEXT_INPUT_DEV_H_
6 #define PPAPI_CPP_DEV_TEXT_INPUT_DEV_H_
7
8 #include "ppapi/c/dev/ppb_text_input_dev.h"
9
10 /// @file
11 /// This file defines the API for controlling event delivery of IME.
12 namespace pp {
13
14 class Instance;
15 class Rect;
16
17 class TextInput_Dev {
18 public:
19 explicit TextInput_Dev(Instance* instance);
20 virtual ~TextInput_Dev();
21
22 void SetTextInputType(PP_TextInput_Type type);
23 void UpdateCaretPosition(const Rect& caret, const Rect& boundingBox);
24 void ConfirmCompositionText();
25 void CancelCompositionText();
26
27 private:
28 Instance* instance_;
29 };
30
31 } // namespace pp
32
33 #endif // PPAPI_CPP_DEV_TEXT_INPUT_DEV_H_
OLDNEW
« no previous file with comments | « ppapi/c/ppb_input_event.h ('k') | ppapi/cpp/dev/text_input_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698