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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 void OnDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar, | 500 void OnDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar, |
501 bool has_vertical_scrollbar); | 501 bool has_vertical_scrollbar); |
502 void OnDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, | 502 void OnDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, |
503 bool is_pinned_to_right); | 503 bool is_pinned_to_right); |
504 void OnDidChangeNumWheelEvents(int count); | 504 void OnDidChangeNumWheelEvents(int count); |
505 void OnSelectionChanged(const string16& text, | 505 void OnSelectionChanged(const string16& text, |
506 size_t offset, | 506 size_t offset, |
507 const ui::Range& range); | 507 const ui::Range& range); |
508 void OnSelectionBoundsChanged( | 508 void OnSelectionBoundsChanged( |
509 const ViewHostMsg_SelectionBounds_Params& params); | 509 const ViewHostMsg_SelectionBounds_Params& params); |
| 510 void OnTouchEditingHandlesVisibilityChanged(bool visible); |
510 void OnPasteFromSelectionClipboard(); | 511 void OnPasteFromSelectionClipboard(); |
511 void OnRouteCloseEvent(); | 512 void OnRouteCloseEvent(); |
512 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); | 513 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); |
513 void OnRunJavaScriptMessage(const string16& message, | 514 void OnRunJavaScriptMessage(const string16& message, |
514 const string16& default_prompt, | 515 const string16& default_prompt, |
515 const GURL& frame_url, | 516 const GURL& frame_url, |
516 JavaScriptMessageType type, | 517 JavaScriptMessageType type, |
517 IPC::Message* reply_msg); | 518 IPC::Message* reply_msg); |
518 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 519 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
519 const string16& message, | 520 const string16& message, |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 688 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
688 }; | 689 }; |
689 | 690 |
690 #if defined(COMPILER_MSVC) | 691 #if defined(COMPILER_MSVC) |
691 #pragma warning(pop) | 692 #pragma warning(pop) |
692 #endif | 693 #endif |
693 | 694 |
694 } // namespace content | 695 } // namespace content |
695 | 696 |
696 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 697 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |