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

Side by Side Diff: third_party/WebKit/Source/web/RemoteFrameClientImpl.h

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 RemoteFrameClientImpl_h 5 #ifndef RemoteFrameClientImpl_h
6 #define RemoteFrameClientImpl_h 6 #define RemoteFrameClientImpl_h
7 7
8 #include "core/frame/RemoteFrameClient.h" 8 #include "core/frame/RemoteFrameClient.h"
9 9
10 namespace blink { 10 namespace blink {
11 class WebRemoteFrameImpl; 11 class WebRemoteFrameImpl;
12 12
13 class RemoteFrameClientImpl final : public RemoteFrameClient { 13 class RemoteFrameClientImpl final : public RemoteFrameClient {
14 public: 14 public:
15 static RawPtr<RemoteFrameClientImpl> create(WebRemoteFrameImpl*); 15 static RemoteFrameClientImpl* create(WebRemoteFrameImpl*);
16 16
17 DECLARE_VIRTUAL_TRACE(); 17 DECLARE_VIRTUAL_TRACE();
18 18
19 // FrameClient overrides: 19 // FrameClient overrides:
20 bool inShadowTree() const override; 20 bool inShadowTree() const override;
21 void willBeDetached() override; 21 void willBeDetached() override;
22 void detached(FrameDetachType) override; 22 void detached(FrameDetachType) override;
23 Frame* opener() const override; 23 Frame* opener() const override;
24 void setOpener(Frame*) override; 24 void setOpener(Frame*) override;
25 Frame* parent() const override; 25 Frame* parent() const override;
(...skipping 18 matching lines...) Expand all
44 44
45 private: 45 private:
46 explicit RemoteFrameClientImpl(WebRemoteFrameImpl*); 46 explicit RemoteFrameClientImpl(WebRemoteFrameImpl*);
47 47
48 Member<WebRemoteFrameImpl> m_webFrame; 48 Member<WebRemoteFrameImpl> m_webFrame;
49 }; 49 };
50 50
51 } // namespace blink 51 } // namespace blink
52 52
53 #endif // RemoteFrameClientImpl_h 53 #endif // RemoteFrameClientImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/PopupMenuImpl.cpp ('k') | third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698