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

Side by Side Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.h

Issue 1307013004: Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync + fix html_viewer compile Created 5 years, 2 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 /* 1 /*
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 bool allowMedia(const KURL& mediaURL) override; 139 bool allowMedia(const KURL& mediaURL) override;
140 bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin* , const KURL&) override; 140 bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin* , const KURL&) override;
141 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c onst KURL&) override; 141 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c onst KURL&) override;
142 void didNotAllowScript() override; 142 void didNotAllowScript() override;
143 void didNotAllowPlugins() override; 143 void didNotAllowPlugins() override;
144 144
145 WebCookieJar* cookieJar() const override; 145 WebCookieJar* cookieJar() const override;
146 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*, LocalFrame* sourceFrame) const override; 146 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*, LocalFrame* sourceFrame) const override;
147 void didChangeName(const String&) override; 147 void didChangeName(const String&) override;
148 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 148 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
149 void didChangeFrameOwnerProperties(Frame*, ScrollbarMode, int, int) override ;
149 150
150 void dispatchWillOpenWebSocket(WebSocketHandle*) override; 151 void dispatchWillOpenWebSocket(WebSocketHandle*) override;
151 152
152 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override; 153 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override;
153 154
154 void didRequestAutocomplete(HTMLFormElement*) override; 155 void didRequestAutocomplete(HTMLFormElement*) override;
155 156
156 bool allowWebGL(bool enabledPerSettings) override; 157 bool allowWebGL(bool enabledPerSettings) override;
157 void didLoseWebGLContext(int arbRobustnessContextLostReason) override; 158 void didLoseWebGLContext(int arbRobustnessContextLostReason) override;
158 159
(...skipping 26 matching lines...) Expand all
185 // The WebFrame that owns this object and manages its lifetime. Therefore, 186 // The WebFrame that owns this object and manages its lifetime. Therefore,
186 // the web frame object is guaranteed to exist. 187 // the web frame object is guaranteed to exist.
187 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; 188 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame;
188 }; 189 };
189 190
190 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 191 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
191 192
192 } // namespace blink 193 } // namespace blink
193 194
194 #endif 195 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698