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

Side by Side Diff: third_party/WebKit/public/web/WebFrame.h

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 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 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 152
153 // For a WebFrame with contents being rendered in another process, this 153 // For a WebFrame with contents being rendered in another process, this
154 // sets a layer for use by the in-process compositor. WebLayer should be 154 // sets a layer for use by the in-process compositor. WebLayer should be
155 // null if the content is being rendered in the current process. 155 // null if the content is being rendered in the current process.
156 virtual void setRemoteWebLayer(WebLayer*) = 0; 156 virtual void setRemoteWebLayer(WebLayer*) = 0;
157 157
158 // Initializes the various client interfaces. 158 // Initializes the various client interfaces.
159 virtual void setSharedWorkerRepositoryClient(WebSharedWorkerRepositoryClient *) = 0; 159 virtual void setSharedWorkerRepositoryClient(WebSharedWorkerRepositoryClient *) = 0;
160 160
161 // The security origin of this frame. 161 // The security origin of this frame.
162 BLINK_EXPORT WebSecurityOrigin securityOrigin() const; 162 BLINK_EXPORT WebSecurityOrigin getSecurityOrigin() const;
163 163
164 // Updates the sandbox flags in the frame's FrameOwner. This is used when 164 // Updates the sandbox flags in the frame's FrameOwner. This is used when
165 // this frame's parent is in another process and it dynamically updates 165 // this frame's parent is in another process and it dynamically updates
166 // this frame's sandbox flags. The flags won't take effect until the next 166 // this frame's sandbox flags. The flags won't take effect until the next
167 // navigation. 167 // navigation.
168 BLINK_EXPORT void setFrameOwnerSandboxFlags(WebSandboxFlags); 168 BLINK_EXPORT void setFrameOwnerSandboxFlags(WebSandboxFlags);
169 169
170 // Returns true if the frame is enforcing strict mixed content checking. 170 // Returns true if the frame is enforcing strict mixed content checking.
171 BLINK_EXPORT bool shouldEnforceStrictMixedContentChecking() const; 171 BLINK_EXPORT bool shouldEnforceStrictMixedContentChecking() const;
172 172
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 WebFrame* m_firstChild; 612 WebFrame* m_firstChild;
613 WebFrame* m_lastChild; 613 WebFrame* m_lastChild;
614 614
615 WebFrame* m_opener; 615 WebFrame* m_opener;
616 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; 616 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker;
617 }; 617 };
618 618
619 } // namespace blink 619 } // namespace blink
620 620
621 #endif 621 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebDocument.h ('k') | third_party/WebKit/public/web/WebGeolocationPermissionRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698