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

Side by Side Diff: third_party/WebKit/public/web/WebRemoteFrameClient.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: Changed "Guest" to "InnerContents" 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 WebRemoteFrameClient_h 5 #ifndef WebRemoteFrameClient_h
6 #define WebRemoteFrameClient_h 6 #define WebRemoteFrameClient_h
7 7
8 #include "public/platform/WebSecurityOrigin.h" 8 #include "public/platform/WebSecurityOrigin.h"
9 #include "public/web/WebDOMMessageEvent.h" 9 #include "public/web/WebDOMMessageEvent.h"
10 10
(...skipping 28 matching lines...) Expand all
39 // A remote frame was asked to start a navigation. 39 // A remote frame was asked to start a navigation.
40 virtual void navigate(const WebURLRequest& request, bool shouldReplaceCurren tEntry) { } 40 virtual void navigate(const WebURLRequest& request, bool shouldReplaceCurren tEntry) { }
41 virtual void reload(bool ignoreCache, bool isClientRedirect) { } 41 virtual void reload(bool ignoreCache, bool isClientRedirect) { }
42 42
43 // FIXME: Remove this method once we have input routing in the browser 43 // FIXME: Remove this method once we have input routing in the browser
44 // process. See http://crbug.com/339659. 44 // process. See http://crbug.com/339659.
45 virtual void forwardInputEvent(const WebInputEvent*) { } 45 virtual void forwardInputEvent(const WebInputEvent*) { }
46 46
47 virtual void frameRectsChanged(const WebRect&) { } 47 virtual void frameRectsChanged(const WebRect&) { }
48 48
49 virtual void visibilityChanged(bool visible) {}
50
49 // This frame updated its opener to another frame. 51 // This frame updated its opener to another frame.
50 virtual void didChangeOpener(WebFrame* opener) { } 52 virtual void didChangeOpener(WebFrame* opener) { }
51 }; 53 };
52 54
53 } // namespace blink 55 } // namespace blink
54 56
55 #endif // WebRemoteFrameClient_h 57 #endif // WebRemoteFrameClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698