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

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

Issue 573353002: Plumbing toward transitioning remote frame back to a local frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
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 PassRefPtr<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 navigate(Document& originDocument, const KURL&, const Referrer& , bool lockBackForwardList) OVERRIDE;
21 virtual void detach() OVERRIDE; 22 virtual void detach() OVERRIDE;
22 23
23 void setView(PassRefPtr<RemoteFrameView>); 24 void setView(PassRefPtr<RemoteFrameView>);
24 void createView(); 25 void createView();
25 26
26 RemoteFrameView* view() const; 27 RemoteFrameView* view() const;
27 28
28 private: 29 private:
29 RemoteFrame(FrameClient*, FrameHost*, FrameOwner*); 30 RemoteFrame(FrameClient*, FrameHost*, FrameOwner*);
30 31
31 RefPtr<RemoteFrameView> m_view; 32 RefPtr<RemoteFrameView> m_view;
32 }; 33 };
33 34
34 inline RemoteFrameView* RemoteFrame::view() const 35 inline RemoteFrameView* RemoteFrame::view() const
35 { 36 {
36 return m_view.get(); 37 return m_view.get();
37 } 38 }
38 39
39 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame()); 40 DEFINE_TYPE_CASTS(RemoteFrame, Frame, remoteFrame, remoteFrame->isRemoteFrame(), remoteFrame.isRemoteFrame());
40 41
41 } // namespace blink 42 } // namespace blink
42 43
43 #endif // RemoteFrame_h 44 #endif // RemoteFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698