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

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

Issue 2623633002: Turn off requirement that cross-origin top navigation be accompanied by a user gesture. (Closed)
Patch Set: Created 3 years, 11 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/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 23 matching lines...) Expand all
34 WindowProxy* windowProxy(DOMWrapperWorld&) override; 34 WindowProxy* windowProxy(DOMWrapperWorld&) override;
35 void navigate(Document& originDocument, 35 void navigate(Document& originDocument,
36 const KURL&, 36 const KURL&,
37 bool replaceCurrentItem, 37 bool replaceCurrentItem,
38 UserGestureStatus) override; 38 UserGestureStatus) override;
39 void navigate(const FrameLoadRequest& passedRequest) override; 39 void navigate(const FrameLoadRequest& passedRequest) override;
40 void reload(FrameLoadType, ClientRedirectPolicy) override; 40 void reload(FrameLoadType, ClientRedirectPolicy) override;
41 void detach(FrameDetachType) override; 41 void detach(FrameDetachType) override;
42 RemoteSecurityContext* securityContext() const override; 42 RemoteSecurityContext* securityContext() const override;
43 void printNavigationErrorMessage(const Frame&, const char* reason) override {} 43 void printNavigationErrorMessage(const Frame&, const char* reason) override {}
44 void printNavigationWarning(const String&) override {}
44 bool prepareForCommit() override; 45 bool prepareForCommit() override;
45 bool shouldClose() override; 46 bool shouldClose() override;
46 void setDocumentHasReceivedUserGesture() override; 47 void setDocumentHasReceivedUserGesture() override;
47 48
48 // FIXME: Remove this method once we have input routing in the browser 49 // FIXME: Remove this method once we have input routing in the browser
49 // process. See http://crbug.com/339659. 50 // process. See http://crbug.com/339659.
50 void forwardInputEvent(Event*); 51 void forwardInputEvent(Event*);
51 52
52 void frameRectsChanged(const IntRect& frameRect); 53 void frameRectsChanged(const IntRect& frameRect);
53 54
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 93
93 DEFINE_TYPE_CASTS(RemoteFrame, 94 DEFINE_TYPE_CASTS(RemoteFrame,
94 Frame, 95 Frame,
95 remoteFrame, 96 remoteFrame,
96 remoteFrame->isRemoteFrame(), 97 remoteFrame->isRemoteFrame(),
97 remoteFrame.isRemoteFrame()); 98 remoteFrame.isRemoteFrame());
98 99
99 } // namespace blink 100 } // namespace blink
100 101
101 #endif // RemoteFrame_h 102 #endif // RemoteFrame_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalFrame.cpp ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698