| 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_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 #if defined(OS_ANDROID) | 683 #if defined(OS_ANDROID) |
| 684 void OnUndoScrollFocusedEditableNodeIntoRect(); | 684 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 685 void OnUpdateTopControlsState(bool enable_hiding, | 685 void OnUpdateTopControlsState(bool enable_hiding, |
| 686 bool enable_showing, | 686 bool enable_showing, |
| 687 bool animate); | 687 bool animate); |
| 688 void OnExtractSmartClipData(const gfx::Rect& rect); | 688 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 689 #elif defined(OS_MACOSX) | 689 #elif defined(OS_MACOSX) |
| 690 void OnGetRenderedText(); | 690 void OnGetRenderedText(); |
| 691 void OnPluginImeCompositionCompleted(const base::string16& text, | 691 void OnPluginImeCompositionCompleted(const base::string16& text, |
| 692 int plugin_id); | 692 int plugin_id); |
| 693 void OnSetInLiveResize(bool in_live_resize); | |
| 694 void OnSetWindowVisibility(bool visible); | 693 void OnSetWindowVisibility(bool visible); |
| 695 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 694 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
| 696 const gfx::Rect& view_frame); | 695 const gfx::Rect& view_frame); |
| 697 #endif | 696 #endif |
| 698 | 697 |
| 699 // Page message handlers ----------------------------------------------------- | 698 // Page message handlers ----------------------------------------------------- |
| 700 void OnUpdateWindowScreenRect(gfx::Rect window_screen_rect); | 699 void OnUpdateWindowScreenRect(gfx::Rect window_screen_rect); |
| 701 | 700 |
| 702 // Adding a new message handler? Please add it in alphabetical order above | 701 // Adding a new message handler? Please add it in alphabetical order above |
| 703 // and put it in the same position in the .cc file. | 702 // and put it in the same position in the .cc file. |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 // use the Observer interface to filter IPC messages and receive frame change | 1022 // use the Observer interface to filter IPC messages and receive frame change |
| 1024 // notifications. | 1023 // notifications. |
| 1025 // --------------------------------------------------------------------------- | 1024 // --------------------------------------------------------------------------- |
| 1026 | 1025 |
| 1027 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1026 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1028 }; | 1027 }; |
| 1029 | 1028 |
| 1030 } // namespace content | 1029 } // namespace content |
| 1031 | 1030 |
| 1032 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1031 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |