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

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

Issue 2883033003: Propagate inert state to OOPIFs when a modal dialog is active (Closed)
Patch Set: Trying to fix patch application problem Created 3 years, 7 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 RemoteFrameClient_h 5 #ifndef RemoteFrameClient_h
6 #define RemoteFrameClient_h 6 #define RemoteFrameClient_h
7 7
8 #include "core/frame/FrameClient.h" 8 #include "core/frame/FrameClient.h"
9 #include "core/frame/FrameTypes.h" 9 #include "core/frame/FrameTypes.h"
10 #include "core/loader/FrameLoaderTypes.h" 10 #include "core/loader/FrameLoaderTypes.h"
(...skipping 22 matching lines...) Expand all
33 LocalFrame* source_frame) const = 0; 33 LocalFrame* source_frame) const = 0;
34 34
35 virtual void FrameRectsChanged(const IntRect& frame_rect) = 0; 35 virtual void FrameRectsChanged(const IntRect& frame_rect) = 0;
36 36
37 virtual void UpdateRemoteViewportIntersection( 37 virtual void UpdateRemoteViewportIntersection(
38 const IntRect& viewport_intersection) = 0; 38 const IntRect& viewport_intersection) = 0;
39 39
40 virtual void AdvanceFocus(WebFocusType, LocalFrame* source) = 0; 40 virtual void AdvanceFocus(WebFocusType, LocalFrame* source) = 0;
41 41
42 virtual void VisibilityChanged(bool visible) = 0; 42 virtual void VisibilityChanged(bool visible) = 0;
43
44 virtual void SetIsInert(bool) = 0;
43 }; 45 };
44 46
45 } // namespace blink 47 } // namespace blink
46 48
47 #endif // RemoteFrameClient_h 49 #endif // RemoteFrameClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698