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

Side by Side Diff: Source/web/RemoteBridgeFrameOwner.h

Issue 910313004: Replace PlaceholderFrameOwner with RemoteBridgeFrameOwner. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Nit: remove newline Created 5 years, 10 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 | « no previous file | Source/web/RemoteBridgeFrameOwner.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be found
3 // in the LICENSE file.
4
5 #ifndef RemoteBridgeFrameOwner_h
6 #define RemoteBridgeFrameOwner_h
7
8 #include "core/frame/FrameOwner.h"
9 #include "web/WebLocalFrameImpl.h"
10
11 namespace blink {
12
13 // Helper class to bridge communication for a frame with a remote parent.
14 // Currently, it serves two purposes:
15 // 1. Allows the local frame's loader to retrieve sandbox flags associated with
16 // its owner element in another process.
17 // 2. Trigger a load event on its owner element once it finishes a load.
18 class RemoteBridgeFrameOwner : public NoBaseWillBeGarbageCollectedFinalized<Remo teBridgeFrameOwner>, public FrameOwner {
19 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(RemoteBridgeFrameOwner);
20 public:
21 static PassOwnPtrWillBeRawPtr<RemoteBridgeFrameOwner> create(PassRefPtrWillB eRawPtr<WebLocalFrameImpl> frame, SandboxFlags flags)
22 {
23 return adoptPtrWillBeNoop(new RemoteBridgeFrameOwner(frame, flags));
24 }
25
26 virtual bool isLocal() const override
27 {
28 return false;
29 }
30
31 virtual SandboxFlags sandboxFlags() const override
32 {
33 return m_sandboxFlags;
34 }
35
36 void setSandboxFlags(SandboxFlags flags)
37 {
38 m_sandboxFlags = flags;
39 }
40
41 virtual void dispatchLoad() override;
42
43 virtual void trace(Visitor*) override;
44
45 private:
46 RemoteBridgeFrameOwner(PassRefPtrWillBeRawPtr<WebLocalFrameImpl>, SandboxFla gs);
47
48 RefPtrWillBeMember<WebLocalFrameImpl> m_frame;
49 SandboxFlags m_sandboxFlags;
50 };
51
52 } // namespace blink
53
54 #endif // RemoteBridgeFrameOwner_h
OLDNEW
« no previous file with comments | « no previous file | Source/web/RemoteBridgeFrameOwner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698