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

Side by Side Diff: Source/core/frame/RemoteFrame.cpp

Issue 642823006: Move forwardInputEvent to RemoteFrameClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix review comments Created 6 years, 2 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
« no previous file with comments | « Source/core/frame/RemoteFrame.h ('k') | Source/core/frame/RemoteFrameClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "config.h" 5 #include "config.h"
6 #include "core/frame/RemoteFrame.h" 6 #include "core/frame/RemoteFrame.h"
7 7
8 #include "core/frame/RemoteFrameClient.h" 8 #include "core/frame/RemoteFrameClient.h"
9 #include "core/frame/RemoteFrameView.h" 9 #include "core/frame/RemoteFrameView.h"
10 #include "core/html/HTMLFrameOwnerElement.h" 10 #include "core/html/HTMLFrameOwnerElement.h"
(...skipping 25 matching lines...) Expand all
36 request.setHTTPReferrer(referrer); 36 request.setHTTPReferrer(referrer);
37 remoteFrameClient()->navigate(request, lockBackForwardList); 37 remoteFrameClient()->navigate(request, lockBackForwardList);
38 } 38 }
39 39
40 void RemoteFrame::detach() 40 void RemoteFrame::detach()
41 { 41 {
42 detachChildren(); 42 detachChildren();
43 Frame::detach(); 43 Frame::detach();
44 } 44 }
45 45
46 void RemoteFrame::forwardInputEvent(Event* event)
47 {
48 remoteFrameClient()->forwardInputEvent(event);
49 }
50
46 void RemoteFrame::trace(Visitor* visitor) 51 void RemoteFrame::trace(Visitor* visitor)
47 { 52 {
48 visitor->trace(m_view); 53 visitor->trace(m_view);
49 Frame::trace(visitor); 54 Frame::trace(visitor);
50 } 55 }
51 56
52 void RemoteFrame::setView(PassRefPtrWillBeRawPtr<RemoteFrameView> view) 57 void RemoteFrame::setView(PassRefPtrWillBeRawPtr<RemoteFrameView> view)
53 { 58 {
54 // Oilpan: as RemoteFrameView performs no finalization actions, 59 // Oilpan: as RemoteFrameView performs no finalization actions,
55 // no explicit dispose() of it needed here. (cf. FrameView::dispose().) 60 // no explicit dispose() of it needed here. (cf. FrameView::dispose().)
(...skipping 11 matching lines...) Expand all
67 owner->setWidget(view); 72 owner->setWidget(view);
68 } 73 }
69 } 74 }
70 75
71 RemoteFrameClient* RemoteFrame::remoteFrameClient() const 76 RemoteFrameClient* RemoteFrame::remoteFrameClient() const
72 { 77 {
73 return static_cast<RemoteFrameClient*>(client()); 78 return static_cast<RemoteFrameClient*>(client());
74 } 79 }
75 80
76 } // namespace blink 81 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/frame/RemoteFrame.h ('k') | Source/core/frame/RemoteFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698