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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameLoaderClient.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: Address comments for tests + merge blink/cr changes. 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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google 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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 virtual void didNotAllowScript() { } 185 virtual void didNotAllowScript() { }
186 // This callback is similar, but for plugins. 186 // This callback is similar, but for plugins.
187 virtual void didNotAllowPlugins() { } 187 virtual void didNotAllowPlugins() { }
188 188
189 virtual WebCookieJar* cookieJar() const = 0; 189 virtual WebCookieJar* cookieJar() const = 0;
190 190
191 virtual void didChangeName(const String&) { } 191 virtual void didChangeName(const String&) { }
192 192
193 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } 193 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { }
194 194
195 virtual void didChangeFrameOwnerProperties(Frame*, ScrollbarMode, int, int) { }
196
195 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } 197 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { }
196 198
197 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { } 199 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { }
198 200
199 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; 201 virtual void didRequestAutocomplete(HTMLFormElement*) = 0;
200 202
201 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings ; } 203 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings ; }
202 // Informs the embedder that a WebGL canvas inside this frame received a los t context 204 // Informs the embedder that a WebGL canvas inside this frame received a los t context
203 // notification with the given GL_ARB_robustness guilt/innocence code (see E xtensions3D.h). 205 // notification with the given GL_ARB_robustness guilt/innocence code (see E xtensions3D.h).
204 virtual void didLoseWebGLContext(int) { } 206 virtual void didLoseWebGLContext(int) { }
(...skipping 28 matching lines...) Expand all
233 BeforeUnloadHandler, 235 BeforeUnloadHandler,
234 UnloadHandler, 236 UnloadHandler,
235 }; 237 };
236 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 238 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
237 239
238 }; 240 };
239 241
240 } // namespace blink 242 } // namespace blink
241 243
242 #endif // FrameLoaderClient_h 244 #endif // FrameLoaderClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698