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

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

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 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 PassRefPtr<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(PassRefPtr<RemoteFrameView>);
24 void createView(); 24 void createView();
25 25
26 RemoteFrameView* view() const; 26 RemoteFrameView* view() const;
27 27
28 private: 28 private:
29 RemoteFrame(FrameClient*, FrameHost*, FrameOwner*); 29 RemoteFrame(FrameClient*, FrameHost*, FrameOwner*);
30 30
31 RefPtr<RemoteFrameView> m_view; 31 RefPtr<RemoteFrameView> m_view;
32 }; 32 };
33 33
34 inline RemoteFrameView* RemoteFrame::view() const 34 inline RemoteFrameView* RemoteFrame::view() const
35 { 35 {
36 return m_view.get(); 36 return m_view.get();
37 } 37 }
38 38
39 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame()); 39 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame());
40 40
41 } // namespace blink 41 } // namespace blink
42 42
43 #endif // RemoteFrame_h 43 #endif // RemoteFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698