| 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 #include "content/browser/renderer_host/render_view_host_impl.h" | 5 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 void RenderViewHostImpl::ActivateNearestFindResult(int request_id, | 685 void RenderViewHostImpl::ActivateNearestFindResult(int request_id, |
| 686 float x, | 686 float x, |
| 687 float y) { | 687 float y) { |
| 688 Send(new InputMsg_ActivateNearestFindResult(GetRoutingID(), | 688 Send(new InputMsg_ActivateNearestFindResult(GetRoutingID(), |
| 689 request_id, x, y)); | 689 request_id, x, y)); |
| 690 } | 690 } |
| 691 | 691 |
| 692 void RenderViewHostImpl::RequestFindMatchRects(int current_version) { | 692 void RenderViewHostImpl::RequestFindMatchRects(int current_version) { |
| 693 Send(new ViewMsg_FindMatchRects(GetRoutingID(), current_version)); | 693 Send(new ViewMsg_FindMatchRects(GetRoutingID(), current_version)); |
| 694 } | 694 } |
| 695 |
| 696 void RenderViewHostImpl::FullscreenChanged(bool is_fullscreen) { |
| 697 Send(new ViewMsg_FullscreenChanged(GetRoutingID(), is_fullscreen)); |
| 698 } |
| 695 #endif | 699 #endif |
| 696 | 700 |
| 697 void RenderViewHostImpl::DragTargetDragEnter( | 701 void RenderViewHostImpl::DragTargetDragEnter( |
| 698 const DropData& drop_data, | 702 const DropData& drop_data, |
| 699 const gfx::Point& client_pt, | 703 const gfx::Point& client_pt, |
| 700 const gfx::Point& screen_pt, | 704 const gfx::Point& screen_pt, |
| 701 WebDragOperationsMask operations_allowed, | 705 WebDragOperationsMask operations_allowed, |
| 702 int key_modifiers) { | 706 int key_modifiers) { |
| 703 const int renderer_id = GetProcess()->GetID(); | 707 const int renderer_id = GetProcess()->GetID(); |
| 704 ChildProcessSecurityPolicyImpl* policy = | 708 ChildProcessSecurityPolicyImpl* policy = |
| (...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 FrameTree* frame_tree = delegate_->GetFrameTree(); | 1674 FrameTree* frame_tree = delegate_->GetFrameTree(); |
| 1671 | 1675 |
| 1672 frame_tree->ResetForMainFrameSwap(); | 1676 frame_tree->ResetForMainFrameSwap(); |
| 1673 } | 1677 } |
| 1674 | 1678 |
| 1675 void RenderViewHostImpl::SelectWordAroundCaret() { | 1679 void RenderViewHostImpl::SelectWordAroundCaret() { |
| 1676 Send(new ViewMsg_SelectWordAroundCaret(GetRoutingID())); | 1680 Send(new ViewMsg_SelectWordAroundCaret(GetRoutingID())); |
| 1677 } | 1681 } |
| 1678 | 1682 |
| 1679 } // namespace content | 1683 } // namespace content |
| OLD | NEW |