OLD | NEW |
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/CoreExport.h" | 8 #include "core/CoreExport.h" |
9 #include "core/dom/RemoteSecurityContext.h" | 9 #include "core/dom/RemoteSecurityContext.h" |
10 #include "core/frame/Frame.h" | 10 #include "core/frame/Frame.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 bool replaceCurrentItem, | 35 bool replaceCurrentItem, |
36 UserGestureStatus) override; | 36 UserGestureStatus) override; |
37 void navigate(const FrameLoadRequest& passedRequest) override; | 37 void navigate(const FrameLoadRequest& passedRequest) override; |
38 void reload(FrameLoadType, ClientRedirectPolicy) override; | 38 void reload(FrameLoadType, ClientRedirectPolicy) override; |
39 void detach(FrameDetachType) override; | 39 void detach(FrameDetachType) override; |
40 RemoteSecurityContext* securityContext() const override; | 40 RemoteSecurityContext* securityContext() const override; |
41 void printNavigationErrorMessage(const Frame&, const char* reason) override {} | 41 void printNavigationErrorMessage(const Frame&, const char* reason) override {} |
42 void printNavigationWarning(const String&) override {} | 42 void printNavigationWarning(const String&) override {} |
43 bool prepareForCommit() override; | 43 bool prepareForCommit() override; |
44 bool shouldClose() override; | 44 bool shouldClose() override; |
45 void setDocumentHasReceivedUserGesture() override; | |
46 | 45 |
47 // FIXME: Remove this method once we have input routing in the browser | 46 // FIXME: Remove this method once we have input routing in the browser |
48 // process. See http://crbug.com/339659. | 47 // process. See http://crbug.com/339659. |
49 void forwardInputEvent(Event*); | 48 void forwardInputEvent(Event*); |
50 | 49 |
51 void frameRectsChanged(const IntRect& frameRect); | 50 void frameRectsChanged(const IntRect& frameRect); |
52 | 51 |
53 void visibilityChanged(bool visible); | 52 void visibilityChanged(bool visible); |
54 | 53 |
55 void setWebLayer(WebLayer*); | 54 void setWebLayer(WebLayer*); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 | 89 |
91 DEFINE_TYPE_CASTS(RemoteFrame, | 90 DEFINE_TYPE_CASTS(RemoteFrame, |
92 Frame, | 91 Frame, |
93 remoteFrame, | 92 remoteFrame, |
94 remoteFrame->isRemoteFrame(), | 93 remoteFrame->isRemoteFrame(), |
95 remoteFrame.isRemoteFrame()); | 94 remoteFrame.isRemoteFrame()); |
96 | 95 |
97 } // namespace blink | 96 } // namespace blink |
98 | 97 |
99 #endif // RemoteFrame_h | 98 #endif // RemoteFrame_h |
OLD | NEW |