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

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

Issue 113403006: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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
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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 virtual void DispatchPostponedGestureEvent(ui::GestureEvent* event) OVERRIDE; 264 virtual void DispatchPostponedGestureEvent(ui::GestureEvent* event) OVERRIDE;
265 virtual void DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE; 265 virtual void DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE;
266 266
267 // Overridden from ui::TextInputClient for Win8/metro TSF support. 267 // Overridden from ui::TextInputClient for Win8/metro TSF support.
268 // Following methods are not used in existing IMM32 related implementation. 268 // Following methods are not used in existing IMM32 related implementation.
269 virtual void SetCompositionText( 269 virtual void SetCompositionText(
270 const ui::CompositionText& composition) OVERRIDE; 270 const ui::CompositionText& composition) OVERRIDE;
271 virtual void ConfirmCompositionText() OVERRIDE; 271 virtual void ConfirmCompositionText() OVERRIDE;
272 virtual void ClearCompositionText() OVERRIDE; 272 virtual void ClearCompositionText() OVERRIDE;
273 virtual void InsertText(const base::string16& text) OVERRIDE; 273 virtual void InsertText(const base::string16& text) OVERRIDE;
274 virtual void InsertChar(char16 ch, int flags) OVERRIDE; 274 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE;
275 virtual gfx::NativeWindow GetAttachedWindow() const OVERRIDE; 275 virtual gfx::NativeWindow GetAttachedWindow() const OVERRIDE;
276 virtual ui::TextInputType GetTextInputType() const OVERRIDE; 276 virtual ui::TextInputType GetTextInputType() const OVERRIDE;
277 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE; 277 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE;
278 virtual bool CanComposeInline() const OVERRIDE; 278 virtual bool CanComposeInline() const OVERRIDE;
279 virtual gfx::Rect GetCaretBounds() const OVERRIDE; 279 virtual gfx::Rect GetCaretBounds() const OVERRIDE;
280 virtual bool GetCompositionCharacterBounds(uint32 index, 280 virtual bool GetCompositionCharacterBounds(uint32 index,
281 gfx::Rect* rect) const OVERRIDE; 281 gfx::Rect* rect) const OVERRIDE;
282 virtual bool HasCompositionText() const OVERRIDE; 282 virtual bool HasCompositionText() const OVERRIDE;
283 virtual bool GetTextRange(gfx::Range* range) const OVERRIDE; 283 virtual bool GetTextRange(gfx::Range* range) const OVERRIDE;
284 virtual bool GetCompositionTextRange(gfx::Range* range) const OVERRIDE; 284 virtual bool GetCompositionTextRange(gfx::Range* range) const OVERRIDE;
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 base::win::ScopedComPtr<IAccessible> window_iaccessible_; 607 base::win::ScopedComPtr<IAccessible> window_iaccessible_;
608 608
609 std::vector<ui::LatencyInfo> software_latency_info_; 609 std::vector<ui::LatencyInfo> software_latency_info_;
610 610
611 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); 611 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin);
612 }; 612 };
613 613
614 } // namespace content 614 } // namespace content
615 615
616 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ 616 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698