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

Side by Side Diff: chrome/browser/renderer_host/render_widget_host_view_views.h

Issue 8294026: Support IMM32 reconversion on Windows (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix return values Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 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 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 virtual void InsertText(const string16& text) OVERRIDE; 169 virtual void InsertText(const string16& text) OVERRIDE;
170 virtual void InsertChar(char16 ch, int flags) OVERRIDE; 170 virtual void InsertChar(char16 ch, int flags) OVERRIDE;
171 virtual ui::TextInputType GetTextInputType() const OVERRIDE; 171 virtual ui::TextInputType GetTextInputType() const OVERRIDE;
172 virtual gfx::Rect GetCaretBounds() OVERRIDE; 172 virtual gfx::Rect GetCaretBounds() OVERRIDE;
173 virtual bool HasCompositionText() OVERRIDE; 173 virtual bool HasCompositionText() OVERRIDE;
174 virtual bool GetTextRange(ui::Range* range) OVERRIDE; 174 virtual bool GetTextRange(ui::Range* range) OVERRIDE;
175 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE; 175 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE;
176 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE; 176 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE;
177 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE; 177 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE;
178 virtual bool DeleteRange(const ui::Range& range) OVERRIDE; 178 virtual bool DeleteRange(const ui::Range& range) OVERRIDE;
179 virtual bool GetTextFromRange( 179 virtual bool GetTextFromRange(const ui::Range& range,
180 const ui::Range& range, 180 string16* text) OVERRIDE;
Hironori Bono 2011/10/27 06:17:47 nit: can you add '#include "base/compiler_specific
Peng 2011/10/27 16:12:24 Done.
181 const base::Callback<void(const string16&)>& callback) OVERRIDE;
182 virtual void OnInputMethodChanged() OVERRIDE; 181 virtual void OnInputMethodChanged() OVERRIDE;
183 virtual bool ChangeTextDirectionAndLayoutAlignment( 182 virtual bool ChangeTextDirectionAndLayoutAlignment(
184 base::i18n::TextDirection direction) OVERRIDE; 183 base::i18n::TextDirection direction) OVERRIDE;
185 virtual views::View* GetOwnerViewOfTextInputClient() OVERRIDE; 184 virtual views::View* GetOwnerViewOfTextInputClient() OVERRIDE;
186 185
187 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 186 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
188 virtual void AcceleratedSurfaceNew( 187 virtual void AcceleratedSurfaceNew(
189 int32 width, 188 int32 width,
190 int32 height, 189 int32 height,
191 uint64* surface_id, 190 uint64* surface_id,
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 gfx::Size requested_size_; 281 gfx::Size requested_size_;
283 282
284 // The touch-event. Its touch-points are updated as necessary. A new 283 // The touch-event. Its touch-points are updated as necessary. A new
285 // touch-point is added from an ET_TOUCH_PRESSED event, and a touch-point is 284 // touch-point is added from an ET_TOUCH_PRESSED event, and a touch-point is
286 // removed from the list on an ET_TOUCH_RELEASED event. 285 // removed from the list on an ET_TOUCH_RELEASED event.
287 WebKit::WebTouchEvent touch_event_; 286 WebKit::WebTouchEvent touch_event_;
288 287
289 // The current text input type. 288 // The current text input type.
290 ui::TextInputType text_input_type_; 289 ui::TextInputType text_input_type_;
291 290
292 string16 selection_text_; 291 // Rectangles before and after the selection.
293 size_t selection_text_offset_;
294 ui::Range selection_range_;
295 gfx::Rect selection_start_rect_; 292 gfx::Rect selection_start_rect_;
296 gfx::Rect selection_end_rect_; 293 gfx::Rect selection_end_rect_;
297 294
298 // Indicates if there is onging composition text. 295 // Indicates if there is onging composition text.
299 bool has_composition_text_; 296 bool has_composition_text_;
300 297
301 string16 tooltip_text_; 298 string16 tooltip_text_;
302 299
303 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 300 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
304 std::vector< base::Callback<void(void)> > on_compositing_ended_callbacks_; 301 std::vector< base::Callback<void(void)> > on_compositing_ended_callbacks_;
(...skipping 11 matching lines...) Expand all
316 313
317 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 314 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
318 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > 315 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> >
319 accelerated_surface_containers_; 316 accelerated_surface_containers_;
320 #endif 317 #endif
321 318
322 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); 319 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews);
323 }; 320 };
324 321
325 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 322 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698