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

Side by Side Diff: Source/web/FrameLoaderClientImpl.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/web/AssertMatchingEnums.cpp ('k') | Source/web/FrameLoaderClientImpl.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) 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 bool allowMedia(const KURL& mediaURL) override; 138 bool allowMedia(const KURL& mediaURL) override;
139 bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin* , const KURL&) override; 139 bool allowDisplayingInsecureContent(bool enabledPerSettings, SecurityOrigin* , const KURL&) override;
140 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c onst KURL&) override; 140 bool allowRunningInsecureContent(bool enabledPerSettings, SecurityOrigin*, c onst KURL&) override;
141 void didNotAllowScript() override; 141 void didNotAllowScript() override;
142 void didNotAllowPlugins() override; 142 void didNotAllowPlugins() override;
143 143
144 WebCookieJar* cookieJar() const override; 144 WebCookieJar* cookieJar() const override;
145 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*, LocalFrame* sourceFrame) const override; 145 bool willCheckAndDispatchMessageEvent(SecurityOrigin* target, MessageEvent*, LocalFrame* sourceFrame) const override;
146 void didChangeName(const String&) override; 146 void didChangeName(const String&) override;
147 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override; 147 void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) override;
148 void didChangeFrameOwnerProperties(Frame*, ScrollbarMode, int, int) override ;
148 149
149 void dispatchWillOpenWebSocket(WebSocketHandle*) override; 150 void dispatchWillOpenWebSocket(WebSocketHandle*) override;
150 151
151 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override; 152 void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) override;
152 153
153 void didRequestAutocomplete(HTMLFormElement*) override; 154 void didRequestAutocomplete(HTMLFormElement*) override;
154 155
155 bool allowWebGL(bool enabledPerSettings) override; 156 bool allowWebGL(bool enabledPerSettings) override;
156 void didLoseWebGLContext(int arbRobustnessContextLostReason) override; 157 void didLoseWebGLContext(int arbRobustnessContextLostReason) override;
157 158
(...skipping 26 matching lines...) Expand all
184 // The WebFrame that owns this object and manages its lifetime. Therefore, 185 // The WebFrame that owns this object and manages its lifetime. Therefore,
185 // the web frame object is guaranteed to exist. 186 // the web frame object is guaranteed to exist.
186 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame; 187 RawPtrWillBeMember<WebLocalFrameImpl> m_webFrame;
187 }; 188 };
188 189
189 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 190 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
190 191
191 } // namespace blink 192 } // namespace blink
192 193
193 #endif 194 #endif
OLDNEW
« no previous file with comments | « Source/web/AssertMatchingEnums.cpp ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698