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

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

Issue 1414663011: Notifying the Out of Process Renderer about Visibility Change of a Remote Frame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed RenderWidgetHostViewChildFrame::SetVisibility Created 5 years, 1 month 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 10 matching lines...) Expand all
21 21
22 virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry ) = 0; 22 virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry ) = 0;
23 virtual void reload(FrameLoadType, ClientRedirectPolicy) = 0; 23 virtual void reload(FrameLoadType, ClientRedirectPolicy) = 0;
24 virtual unsigned backForwardLength() = 0; 24 virtual unsigned backForwardLength() = 0;
25 25
26 // FIXME: Remove this method once we have input routing in the browser 26 // FIXME: Remove this method once we have input routing in the browser
27 // process. See http://crbug.com/339659. 27 // process. See http://crbug.com/339659.
28 virtual void forwardInputEvent(Event*) = 0; 28 virtual void forwardInputEvent(Event*) = 0;
29 29
30 virtual void frameRectsChanged(const IntRect& frameRect) = 0; 30 virtual void frameRectsChanged(const IntRect& frameRect) = 0;
31
32 virtual void visibilityChanged(bool visible) = 0;
31 }; 33 };
32 34
33 } // namespace blink 35 } // namespace blink
34 36
35 #endif // RemoteFrameClient_h 37 #endif // RemoteFrameClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698