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

Unified Diff: chrome/browser/ime_input.h

Issue 2099012: Cancels an ongoing IME composition when receiving an IME_CANCEL_COMPOSITION e... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ime_input.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ime_input.h
===================================================================
--- chrome/browser/ime_input.h (revision 47867)
+++ chrome/browser/ime_input.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -235,6 +235,12 @@
// Represents the window handle of the caller.
void DisableIME(HWND window_handle);
+ // Cancels an ongoing composition of the IME attached to the given window.
+ // Parameters
+ // * window_handle [in] (HWND)
+ // Represents the window handle of the caller.
+ void CancelIME(HWND window_handle);
+
protected:
// Determines whether or not the given attribute represents a target
// (a.k.a. a selection).
@@ -300,7 +306,7 @@
// The rectangle of the input caret retrieved from a renderer process.
gfx::Rect caret_rect_;
- DISALLOW_EVIL_CONSTRUCTORS(ImeInput);
+ DISALLOW_COPY_AND_ASSIGN(ImeInput);
};
#endif // CHROME_BROWSER_IME_INPUT_H_
« no previous file with comments | « no previous file | chrome/browser/ime_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698