| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 bool has_vertical_scrollbar); | 467 bool has_vertical_scrollbar); |
| 468 void OnMsgDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, | 468 void OnMsgDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, |
| 469 bool is_pinned_to_right); | 469 bool is_pinned_to_right); |
| 470 void OnMsgDidChangeNumWheelEvents(int count); | 470 void OnMsgDidChangeNumWheelEvents(int count); |
| 471 void OnMsgSelectionChanged(const string16& text, | 471 void OnMsgSelectionChanged(const string16& text, |
| 472 size_t offset, | 472 size_t offset, |
| 473 const ui::Range& range); | 473 const ui::Range& range); |
| 474 void OnMsgSelectionBoundsChanged(const gfx::Rect& start_rect, | 474 void OnMsgSelectionBoundsChanged(const gfx::Rect& start_rect, |
| 475 const gfx::Rect& end_rect); | 475 const gfx::Rect& end_rect); |
| 476 void OnMsgPasteFromSelectionClipboard(); | 476 void OnMsgPasteFromSelectionClipboard(); |
| 477 void OnMsgRouteCloseEvent(); |
| 477 void OnMsgRunJavaScriptMessage(const string16& message, | 478 void OnMsgRunJavaScriptMessage(const string16& message, |
| 478 const string16& default_prompt, | 479 const string16& default_prompt, |
| 479 const GURL& frame_url, | 480 const GURL& frame_url, |
| 480 ui::JavascriptMessageType type, | 481 ui::JavascriptMessageType type, |
| 481 IPC::Message* reply_msg); | 482 IPC::Message* reply_msg); |
| 482 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, | 483 void OnMsgRunBeforeUnloadConfirm(const GURL& frame_url, |
| 483 const string16& message, | 484 const string16& message, |
| 484 bool is_reload, | 485 bool is_reload, |
| 485 IPC::Message* reply_msg); | 486 IPC::Message* reply_msg); |
| 486 void OnMsgStartDragging(const WebDropData& drop_data, | 487 void OnMsgStartDragging(const WebDropData& drop_data, |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 634 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 634 }; | 635 }; |
| 635 | 636 |
| 636 #if defined(COMPILER_MSVC) | 637 #if defined(COMPILER_MSVC) |
| 637 #pragma warning(pop) | 638 #pragma warning(pop) |
| 638 #endif | 639 #endif |
| 639 | 640 |
| 640 } // namespace content | 641 } // namespace content |
| 641 | 642 |
| 642 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 643 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |