| OLD | NEW |
| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 void OnDisableDeviceEmulation(); | 419 void OnDisableDeviceEmulation(); |
| 420 void OnColorProfile(const std::vector<char>& color_profile); | 420 void OnColorProfile(const std::vector<char>& color_profile); |
| 421 void OnChangeResizeRect(const gfx::Rect& resizer_rect); | 421 void OnChangeResizeRect(const gfx::Rect& resizer_rect); |
| 422 virtual void OnWasHidden(); | 422 virtual void OnWasHidden(); |
| 423 virtual void OnWasShown(bool needs_repainting, | 423 virtual void OnWasShown(bool needs_repainting, |
| 424 const ui::LatencyInfo& latency_info); | 424 const ui::LatencyInfo& latency_info); |
| 425 void OnCreateVideoAck(int32 video_id); | 425 void OnCreateVideoAck(int32 video_id); |
| 426 void OnUpdateVideoAck(int32 video_id); | 426 void OnUpdateVideoAck(int32 video_id); |
| 427 void OnRequestMoveAck(); | 427 void OnRequestMoveAck(); |
| 428 void OnSetInputMethodActive(bool is_active); | 428 void OnSetInputMethodActive(bool is_active); |
| 429 void OnCandidateWindowShown(); | |
| 430 void OnCandidateWindowUpdated(); | |
| 431 void OnCandidateWindowHidden(); | |
| 432 virtual void OnImeSetComposition( | 429 virtual void OnImeSetComposition( |
| 433 const base::string16& text, | 430 const base::string16& text, |
| 434 const std::vector<blink::WebCompositionUnderline>& underlines, | 431 const std::vector<blink::WebCompositionUnderline>& underlines, |
| 435 int selection_start, | 432 int selection_start, |
| 436 int selection_end); | 433 int selection_end); |
| 437 virtual void OnImeConfirmComposition(const base::string16& text, | 434 virtual void OnImeConfirmComposition(const base::string16& text, |
| 438 const gfx::Range& replacement_range, | 435 const gfx::Range& replacement_range, |
| 439 bool keep_selection); | 436 bool keep_selection); |
| 440 void OnRepaint(gfx::Size size_to_paint); | 437 void OnRepaint(gfx::Size size_to_paint); |
| 441 void OnSyntheticGestureCompleted(); | 438 void OnSyntheticGestureCompleted(); |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 ui::MenuSourceType context_menu_source_type_; | 809 ui::MenuSourceType context_menu_source_type_; |
| 813 bool has_host_context_menu_location_; | 810 bool has_host_context_menu_location_; |
| 814 gfx::Point host_context_menu_location_; | 811 gfx::Point host_context_menu_location_; |
| 815 | 812 |
| 816 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 813 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 817 }; | 814 }; |
| 818 | 815 |
| 819 } // namespace content | 816 } // namespace content |
| 820 | 817 |
| 821 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 818 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |