| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 #if defined(OS_ANDROID) | 678 #if defined(OS_ANDROID) |
| 679 void OnUndoScrollFocusedEditableNodeIntoRect(); | 679 void OnUndoScrollFocusedEditableNodeIntoRect(); |
| 680 void OnUpdateTopControlsState(bool enable_hiding, | 680 void OnUpdateTopControlsState(bool enable_hiding, |
| 681 bool enable_showing, | 681 bool enable_showing, |
| 682 bool animate); | 682 bool animate); |
| 683 void OnExtractSmartClipData(const gfx::Rect& rect); | 683 void OnExtractSmartClipData(const gfx::Rect& rect); |
| 684 #elif defined(OS_MACOSX) | 684 #elif defined(OS_MACOSX) |
| 685 void OnGetRenderedText(); | 685 void OnGetRenderedText(); |
| 686 void OnPluginImeCompositionCompleted(const base::string16& text, | 686 void OnPluginImeCompositionCompleted(const base::string16& text, |
| 687 int plugin_id); | 687 int plugin_id); |
| 688 void OnSetInLiveResize(bool in_live_resize); | |
| 689 void OnSetWindowVisibility(bool visible); | 688 void OnSetWindowVisibility(bool visible); |
| 690 void OnWindowFrameChanged(const gfx::Rect& window_frame, | 689 void OnWindowFrameChanged(const gfx::Rect& window_frame, |
| 691 const gfx::Rect& view_frame); | 690 const gfx::Rect& view_frame); |
| 692 #endif | 691 #endif |
| 693 | 692 |
| 694 // Adding a new message handler? Please add it in alphabetical order above | 693 // Adding a new message handler? Please add it in alphabetical order above |
| 695 // and put it in the same position in the .cc file. | 694 // and put it in the same position in the .cc file. |
| 696 | 695 |
| 697 // Misc private functions ---------------------------------------------------- | 696 // Misc private functions ---------------------------------------------------- |
| 698 // Check whether the preferred size has changed. | 697 // Check whether the preferred size has changed. |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 // use the Observer interface to filter IPC messages and receive frame change | 1014 // use the Observer interface to filter IPC messages and receive frame change |
| 1016 // notifications. | 1015 // notifications. |
| 1017 // --------------------------------------------------------------------------- | 1016 // --------------------------------------------------------------------------- |
| 1018 | 1017 |
| 1019 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1018 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1020 }; | 1019 }; |
| 1021 | 1020 |
| 1022 } // namespace content | 1021 } // namespace content |
| 1023 | 1022 |
| 1024 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1023 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |