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

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

Issue 603193005: Move the Widget hierarchy to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase upto and resolve r182737 conflict. 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
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 #ifndef RemoteFrame_h 5 #ifndef RemoteFrame_h
6 #define RemoteFrame_h 6 #define RemoteFrame_h
7 7
8 #include "core/frame/Frame.h" 8 #include "core/frame/Frame.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 class RemoteFrameView; 12 class RemoteFrameView;
13 13
14 class RemoteFrame: public Frame { 14 class RemoteFrame: public Frame {
15 public: 15 public:
16 static PassRefPtrWillBeRawPtr<RemoteFrame> create(FrameClient*, FrameHost*, FrameOwner*); 16 static PassRefPtrWillBeRawPtr<RemoteFrame> create(FrameClient*, FrameHost*, FrameOwner*);
17 virtual bool isRemoteFrame() const OVERRIDE { return true; } 17 virtual bool isRemoteFrame() const OVERRIDE { return true; }
18 18
19 virtual ~RemoteFrame(); 19 virtual ~RemoteFrame();
20 20
21 virtual void detach() OVERRIDE; 21 virtual void detach() OVERRIDE;
22 22
23 void setView(PassRefPtr<RemoteFrameView>); 23 void setView(PassRefPtrWillBeRawPtr<RemoteFrameView>);
24 void createView(); 24 void createView();
25 25
26 RemoteFrameView* view() const; 26 RemoteFrameView* view() const;
27 27
28 void trace(Visitor*) OVERRIDE;
29
28 private: 30 private:
29 RemoteFrame(FrameClient*, FrameHost*, FrameOwner*); 31 RemoteFrame(FrameClient*, FrameHost*, FrameOwner*);
30 32
31 RefPtr<RemoteFrameView> m_view; 33 RefPtrWillBeMember<RemoteFrameView> m_view;
32 }; 34 };
33 35
34 inline RemoteFrameView* RemoteFrame::view() const 36 inline RemoteFrameView* RemoteFrame::view() const
35 { 37 {
36 return m_view.get(); 38 return m_view.get();
37 } 39 }
38 40
39 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame()); 41 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame());
40 42
41 } // namespace blink 43 } // namespace blink
42 44
43 #endif // RemoteFrame_h 45 #endif // RemoteFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698