| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 4 * (http://www.torchmobile.com/) | 4 * (http://www.torchmobile.com/) |
| 5 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 5 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
| 6 * Copyright (C) 2011 Google Inc. All rights reserved. | 6 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 FrameLoadType, | 179 FrameLoadType, |
| 180 Document*); | 180 Document*); |
| 181 | 181 |
| 182 void SaveScrollState(); | 182 void SaveScrollState(); |
| 183 void RestoreScrollPositionAndViewState(); | 183 void RestoreScrollPositionAndViewState(); |
| 184 | 184 |
| 185 // The navigation should only be continued immediately in this frame if this | 185 // The navigation should only be continued immediately in this frame if this |
| 186 // returns NavigationPolicyCurrentTab. | 186 // returns NavigationPolicyCurrentTab. |
| 187 NavigationPolicy ShouldContinueForNavigationPolicy( | 187 NavigationPolicy ShouldContinueForNavigationPolicy( |
| 188 const ResourceRequest&, | 188 const ResourceRequest&, |
| 189 Document* origin_document, |
| 189 const SubstituteData&, | 190 const SubstituteData&, |
| 190 DocumentLoader*, | 191 DocumentLoader*, |
| 191 ContentSecurityPolicyDisposition, | 192 ContentSecurityPolicyDisposition, |
| 192 NavigationType, | 193 NavigationType, |
| 193 NavigationPolicy, | 194 NavigationPolicy, |
| 194 FrameLoadType, | 195 FrameLoadType, |
| 195 bool is_client_redirect, | 196 bool is_client_redirect, |
| 196 HTMLFormElement*); | 197 HTMLFormElement*); |
| 197 | 198 |
| 198 // Like ShouldContinueForNavigationPolicy, but should be used when following | 199 // Like ShouldContinueForNavigationPolicy, but should be used when following |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 SandboxFlags forced_sandbox_flags_; | 286 SandboxFlags forced_sandbox_flags_; |
| 286 | 287 |
| 287 bool dispatching_did_clear_window_object_in_main_world_; | 288 bool dispatching_did_clear_window_object_in_main_world_; |
| 288 bool protect_provisional_loader_; | 289 bool protect_provisional_loader_; |
| 289 bool detached_; | 290 bool detached_; |
| 290 }; | 291 }; |
| 291 | 292 |
| 292 } // namespace blink | 293 } // namespace blink |
| 293 | 294 |
| 294 #endif // FrameLoader_h | 295 #endif // FrameLoader_h |
| OLD | NEW |