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

Side by Side Diff: chrome/browser/renderer_host/render_widget_host_view_mac.mm

Issue 2095024: When we get a IME_CANCEL_COMPOSITION event on OSX, clear the (Closed) Base URL: http://src.chromium.org/git/chromium.git
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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include <QuartzCore/QuartzCore.h> 5 #include <QuartzCore/QuartzCore.h>
6 6
7 #include "chrome/browser/renderer_host/render_widget_host_view_mac.h" 7 #include "chrome/browser/renderer_host/render_widget_host_view_mac.h"
8 8
9 #include "app/surface/io_surface_support_mac.h" 9 #include "app/surface/io_surface_support_mac.h"
10 #import "base/chrome_application_mac.h" 10 #import "base/chrome_application_mac.h"
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 } 310 }
311 311
312 void RenderWidgetHostViewMac::SetIsLoading(bool is_loading) { 312 void RenderWidgetHostViewMac::SetIsLoading(bool is_loading) {
313 is_loading_ = is_loading; 313 is_loading_ = is_loading;
314 UpdateCursorIfOverSelf(); 314 UpdateCursorIfOverSelf();
315 } 315 }
316 316
317 void RenderWidgetHostViewMac::IMEUpdateStatus(int control, 317 void RenderWidgetHostViewMac::IMEUpdateStatus(int control,
318 const gfx::Rect& caret_rect) { 318 const gfx::Rect& caret_rect) {
319 // Reset the IME state and finish an ongoing composition in the renderer. 319 // Reset the IME state and finish an ongoing composition in the renderer.
320 if (control == IME_DISABLE || control == IME_COMPLETE_COMPOSITION) 320 if (control == IME_DISABLE || control == IME_COMPLETE_COMPOSITION ||
321 control == IME_CANCEL_COMPOSITION) {
321 [cocoa_view_ cancelComposition]; 322 [cocoa_view_ cancelComposition];
323 }
322 324
323 // We need to convert the coordinate of the cursor rectangle sent from the 325 // We need to convert the coordinate of the cursor rectangle sent from the
324 // renderer and save it. Our IME backend uses a coordinate system whose 326 // renderer and save it. Our IME backend uses a coordinate system whose
325 // origin is the upper-left corner of this view. On the other hand, Cocoa 327 // origin is the upper-left corner of this view. On the other hand, Cocoa
326 // uses a coordinate system whose origin is the lower-left corner of this 328 // uses a coordinate system whose origin is the lower-left corner of this
327 // view. So, we convert the cursor rectangle and save it. 329 // view. So, we convert the cursor rectangle and save it.
328 [cocoa_view_ setCaretRect:[cocoa_view_ RectToNSRect:caret_rect]]; 330 [cocoa_view_ setCaretRect:[cocoa_view_ RectToNSRect:caret_rect]];
329 } 331 }
330 332
331 void RenderWidgetHostViewMac::DidPaintBackingStoreRects( 333 void RenderWidgetHostViewMac::DidPaintBackingStoreRects(
(...skipping 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 // doesn't call any NSTextInput functions, such as setMarkedText or 1820 // doesn't call any NSTextInput functions, such as setMarkedText or
1819 // insertText. So, we need to send an IPC message to a renderer so it can 1821 // insertText. So, we need to send an IPC message to a renderer so it can
1820 // delete the composition node. 1822 // delete the composition node.
1821 NSInputManager *currentInputManager = [NSInputManager currentInputManager]; 1823 NSInputManager *currentInputManager = [NSInputManager currentInputManager];
1822 [currentInputManager markedTextAbandoned:self]; 1824 [currentInputManager markedTextAbandoned:self];
1823 1825
1824 [self unmarkText]; 1826 [self unmarkText];
1825 } 1827 }
1826 1828
1827 @end 1829 @end
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698