OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |