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

Side by Side Diff: content/renderer/render_widget.h

Issue 80583002: [FYI] All-in-one OnCandidateWindow{Show,Update,Hide} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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) 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_RENDERER_RENDER_WIDGET_H_ 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_
6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 10
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 virtual void OnResize(const ViewMsg_Resize_Params& params); 337 virtual void OnResize(const ViewMsg_Resize_Params& params);
338 void OnChangeResizeRect(const gfx::Rect& resizer_rect); 338 void OnChangeResizeRect(const gfx::Rect& resizer_rect);
339 virtual void OnWasHidden(); 339 virtual void OnWasHidden();
340 virtual void OnWasShown(bool needs_repainting); 340 virtual void OnWasShown(bool needs_repainting);
341 virtual void OnWasSwappedOut(); 341 virtual void OnWasSwappedOut();
342 void OnUpdateRectAck(); 342 void OnUpdateRectAck();
343 void OnCreateVideoAck(int32 video_id); 343 void OnCreateVideoAck(int32 video_id);
344 void OnUpdateVideoAck(int32 video_id); 344 void OnUpdateVideoAck(int32 video_id);
345 void OnRequestMoveAck(); 345 void OnRequestMoveAck();
346 void OnSetInputMethodActive(bool is_active); 346 void OnSetInputMethodActive(bool is_active);
347 void OnCandidateWindowShow();
348 void OnCandidateWindowUpdate();
349 void OnCandidateWindowHide();
347 virtual void OnImeSetComposition( 350 virtual void OnImeSetComposition(
348 const string16& text, 351 const string16& text,
349 const std::vector<blink::WebCompositionUnderline>& underlines, 352 const std::vector<blink::WebCompositionUnderline>& underlines,
350 int selection_start, 353 int selection_start,
351 int selection_end); 354 int selection_end);
352 virtual void OnImeConfirmComposition(const string16& text, 355 virtual void OnImeConfirmComposition(const string16& text,
353 const gfx::Range& replacement_range, 356 const gfx::Range& replacement_range,
354 bool keep_selection); 357 bool keep_selection);
355 void OnPaintAtSize(const TransportDIB::Handle& dib_id, 358 void OnPaintAtSize(const TransportDIB::Handle& dib_id,
356 int tag, 359 int tag,
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 float popup_origin_scale_for_emulation_; 792 float popup_origin_scale_for_emulation_;
790 793
791 scoped_ptr<ResizingModeSelector> resizing_mode_selector_; 794 scoped_ptr<ResizingModeSelector> resizing_mode_selector_;
792 795
793 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 796 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
794 }; 797 };
795 798
796 } // namespace content 799 } // namespace content
797 800
798 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ 801 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698