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

Side by Side Diff: Source/core/loader/FrameLoaderClient.h

Issue 1319863006: (blink) Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address nits Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/FrameFetchContextTest.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 virtual void didNotAllowScript() { } 184 virtual void didNotAllowScript() { }
185 // This callback is similar, but for plugins. 185 // This callback is similar, but for plugins.
186 virtual void didNotAllowPlugins() { } 186 virtual void didNotAllowPlugins() { }
187 187
188 virtual WebCookieJar* cookieJar() const = 0; 188 virtual WebCookieJar* cookieJar() const = 0;
189 189
190 virtual void didChangeName(const String&) { } 190 virtual void didChangeName(const String&) { }
191 191
192 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } 192 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { }
193 193
194 virtual void didChangeFrameOwnerProperties(Frame*, ScrollbarMode, int, int) { }
195
194 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } 196 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { }
195 197
196 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { } 198 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio nHandler*) { }
197 199
198 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; 200 virtual void didRequestAutocomplete(HTMLFormElement*) = 0;
199 201
200 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings ; } 202 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings ; }
201 // Informs the embedder that a WebGL canvas inside this frame received a los t context 203 // Informs the embedder that a WebGL canvas inside this frame received a los t context
202 // notification with the given GL_ARB_robustness guilt/innocence code (see E xtensions3D.h). 204 // notification with the given GL_ARB_robustness guilt/innocence code (see E xtensions3D.h).
203 virtual void didLoseWebGLContext(int) { } 205 virtual void didLoseWebGLContext(int) { }
(...skipping 28 matching lines...) Expand all
232 BeforeUnloadHandler, 234 BeforeUnloadHandler,
233 UnloadHandler, 235 UnloadHandler,
234 }; 236 };
235 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { } 237 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio nDisablerType) { }
236 238
237 }; 239 };
238 240
239 } // namespace blink 241 } // namespace blink
240 242
241 #endif // FrameLoaderClient_h 243 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « Source/core/loader/FrameFetchContextTest.cpp ('k') | Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698