Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 2928033002: Move GetDocument method from WebFrame to WebLocalFrame. (Closed)
Patch Set: Rebasing... Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <memory> 9 #include <memory>
10 #include <utility> 10 #include <utility>
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 // If the mouse is locked, only the current owner of the mouse lock can 1131 // If the mouse is locked, only the current owner of the mouse lock can
1132 // process mouse events. 1132 // process mouse events.
1133 return mouse_lock_dispatcher_->WillHandleMouseEvent(event); 1133 return mouse_lock_dispatcher_->WillHandleMouseEvent(event);
1134 } 1134 }
1135 1135
1136 // IPC::Listener implementation ---------------------------------------------- 1136 // IPC::Listener implementation ----------------------------------------------
1137 1137
1138 bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) { 1138 bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) {
1139 WebFrame* main_frame = webview() ? webview()->MainFrame() : NULL; 1139 WebFrame* main_frame = webview() ? webview()->MainFrame() : NULL;
1140 if (main_frame && main_frame->IsWebLocalFrame()) 1140 if (main_frame && main_frame->IsWebLocalFrame())
1141 GetContentClient()->SetActiveURL(main_frame->GetDocument().Url()); 1141 GetContentClient()->SetActiveURL(
1142 main_frame->ToWebLocalFrame()->GetDocument().Url());
1142 1143
1143 // Input IPC messages must not be processed if the RenderView is in 1144 // Input IPC messages must not be processed if the RenderView is in
1144 // swapped out state. 1145 // swapped out state.
1145 if (is_swapped_out_ && 1146 if (is_swapped_out_ &&
1146 IPC_MESSAGE_ID_CLASS(message.type()) == InputMsgStart) { 1147 IPC_MESSAGE_ID_CLASS(message.type()) == InputMsgStart) {
1147 // TODO(dtapuska): Remove this histogram once we have seen that it actually 1148 // TODO(dtapuska): Remove this histogram once we have seen that it actually
1148 // produces results true. See crbug.com/615090 1149 // produces results true. See crbug.com/615090
1149 UMA_HISTOGRAM_BOOLEAN("Event.RenderView.DiscardInput", true); 1150 UMA_HISTOGRAM_BOOLEAN("Event.RenderView.DiscardInput", true);
1150 IPC_BEGIN_MESSAGE_MAP(RenderViewImpl, message) 1151 IPC_BEGIN_MESSAGE_MAP(RenderViewImpl, message)
1151 IPC_MESSAGE_HANDLER(InputMsg_HandleInputEvent, OnDiscardInputEvent) 1152 IPC_MESSAGE_HANDLER(InputMsg_HandleInputEvent, OnDiscardInputEvent)
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after
2229 // This IPC only updates the screen info on RenderViews that have a remote 2230 // This IPC only updates the screen info on RenderViews that have a remote
2230 // main frame. For local main frames, the ScreenInfo is updated in 2231 // main frame. For local main frames, the ScreenInfo is updated in
2231 // ViewMsg_Resize. 2232 // ViewMsg_Resize.
2232 if (!main_render_frame_) 2233 if (!main_render_frame_)
2233 screen_info_ = screen_info; 2234 screen_info_ = screen_info;
2234 } 2235 }
2235 2236
2236 GURL RenderViewImpl::GetURLForGraphicsContext3D() { 2237 GURL RenderViewImpl::GetURLForGraphicsContext3D() {
2237 DCHECK(webview()); 2238 DCHECK(webview());
2238 if (webview()->MainFrame()->IsWebLocalFrame()) 2239 if (webview()->MainFrame()->IsWebLocalFrame())
2239 return GURL(webview()->MainFrame()->GetDocument().Url()); 2240 return GURL(webview()->MainFrame()->ToWebLocalFrame()->GetDocument().Url());
2240 else 2241 else
2241 return GURL("chrome://gpu/RenderViewImpl::CreateGraphicsContext3D"); 2242 return GURL("chrome://gpu/RenderViewImpl::CreateGraphicsContext3D");
2242 } 2243 }
2243 2244
2244 void RenderViewImpl::OnSetFocus(bool enable) { 2245 void RenderViewImpl::OnSetFocus(bool enable) {
2245 // This message must always be received when the main frame is a 2246 // This message must always be received when the main frame is a
2246 // WebLocalFrame. 2247 // WebLocalFrame.
2247 CHECK(webview()->MainFrame()->IsWebLocalFrame()); 2248 CHECK(webview()->MainFrame()->IsWebLocalFrame());
2248 SetFocus(enable); 2249 SetFocus(enable);
2249 } 2250 }
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
2563 std::move(callback).Run(INPUT_EVENT_ACK_STATE_NOT_CONSUMED, latency_info, 2564 std::move(callback).Run(INPUT_EVENT_ACK_STATE_NOT_CONSUMED, latency_info,
2564 nullptr); 2565 nullptr);
2565 return; 2566 return;
2566 } 2567 }
2567 idle_user_detector_->ActivityDetected(); 2568 idle_user_detector_->ActivityDetected();
2568 RenderWidget::HandleInputEvent(input_event, latency_info, 2569 RenderWidget::HandleInputEvent(input_event, latency_info,
2569 std::move(callback)); 2570 std::move(callback));
2570 } 2571 }
2571 2572
2572 } // namespace content 2573 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698