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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_win.h

Issue 22401002: Add GetTextInputMode function to TextInputClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorder declaration Created 7 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlapp.h> 9 #include <atlapp.h>
10 #include <atlcrack.h> 10 #include <atlcrack.h>
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 // Overridden from ui::TextInputClient for Win8/metro TSF support. 263 // Overridden from ui::TextInputClient for Win8/metro TSF support.
264 // Following methods are not used in existing IMM32 related implementation. 264 // Following methods are not used in existing IMM32 related implementation.
265 virtual void SetCompositionText( 265 virtual void SetCompositionText(
266 const ui::CompositionText& composition) OVERRIDE; 266 const ui::CompositionText& composition) OVERRIDE;
267 virtual void ConfirmCompositionText() OVERRIDE; 267 virtual void ConfirmCompositionText() OVERRIDE;
268 virtual void ClearCompositionText() OVERRIDE; 268 virtual void ClearCompositionText() OVERRIDE;
269 virtual void InsertText(const string16& text) OVERRIDE; 269 virtual void InsertText(const string16& text) OVERRIDE;
270 virtual void InsertChar(char16 ch, int flags) OVERRIDE; 270 virtual void InsertChar(char16 ch, int flags) OVERRIDE;
271 virtual gfx::NativeWindow GetAttachedWindow() const OVERRIDE; 271 virtual gfx::NativeWindow GetAttachedWindow() const OVERRIDE;
272 virtual ui::TextInputType GetTextInputType() const OVERRIDE; 272 virtual ui::TextInputType GetTextInputType() const OVERRIDE;
273 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE;
273 virtual bool CanComposeInline() const OVERRIDE; 274 virtual bool CanComposeInline() const OVERRIDE;
274 virtual gfx::Rect GetCaretBounds() OVERRIDE; 275 virtual gfx::Rect GetCaretBounds() OVERRIDE;
275 virtual bool GetCompositionCharacterBounds(uint32 index, 276 virtual bool GetCompositionCharacterBounds(uint32 index,
276 gfx::Rect* rect) OVERRIDE; 277 gfx::Rect* rect) OVERRIDE;
277 virtual bool HasCompositionText() OVERRIDE; 278 virtual bool HasCompositionText() OVERRIDE;
278 virtual bool GetTextRange(ui::Range* range) OVERRIDE; 279 virtual bool GetTextRange(ui::Range* range) OVERRIDE;
279 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE; 280 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE;
280 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE; 281 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE;
281 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE; 282 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE;
282 virtual bool DeleteRange(const ui::Range& range) OVERRIDE; 283 virtual bool DeleteRange(const ui::Range& range) OVERRIDE;
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 base::win::ScopedComPtr<IAccessible> window_iaccessible_; 600 base::win::ScopedComPtr<IAccessible> window_iaccessible_;
600 601
601 ui::LatencyInfo software_latency_info_; 602 ui::LatencyInfo software_latency_info_;
602 603
603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); 604 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin);
604 }; 605 };
605 606
606 } // namespace content 607 } // namespace content
607 608
608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 609 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698