| 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. (http://www.t
orchmobile.com/) | 3 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2009. All rights reserved. |
| 5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * | 10 * |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 CachePolicy subresourceCachePolicy() const; | 139 CachePolicy subresourceCachePolicy() const; |
| 140 | 140 |
| 141 void didFirstLayout(); | 141 void didFirstLayout(); |
| 142 | 142 |
| 143 void checkLoadComplete(DocumentLoader*); | 143 void checkLoadComplete(DocumentLoader*); |
| 144 void checkLoadComplete(); | 144 void checkLoadComplete(); |
| 145 void detachFromParent(); | 145 void detachFromParent(); |
| 146 | 146 |
| 147 void addExtraFieldsToRequest(ResourceRequest&); | 147 void addExtraFieldsToRequest(ResourceRequest&); |
| 148 | 148 |
| 149 static void addHTTPOriginIfNeeded(ResourceRequest&, const String& origin); | 149 static void addHTTPOriginIfNeeded(ResourceRequest&, const AtomicString& orig
in); |
| 150 | 150 |
| 151 FrameLoaderClient* client() const { return m_client; } | 151 FrameLoaderClient* client() const { return m_client; } |
| 152 | 152 |
| 153 void setDefersLoading(bool); | 153 void setDefersLoading(bool); |
| 154 | 154 |
| 155 void didExplicitOpen(); | 155 void didExplicitOpen(); |
| 156 | 156 |
| 157 // Callbacks from DocumentWriter | 157 // Callbacks from DocumentWriter |
| 158 void didBeginDocument(bool dispatchWindowObjectAvailable); | 158 void didBeginDocument(bool dispatchWindowObjectAvailable); |
| 159 | 159 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 288 |
| 289 bool m_didAccessInitialDocument; | 289 bool m_didAccessInitialDocument; |
| 290 Timer<FrameLoader> m_didAccessInitialDocumentTimer; | 290 Timer<FrameLoader> m_didAccessInitialDocumentTimer; |
| 291 | 291 |
| 292 SandboxFlags m_forcedSandboxFlags; | 292 SandboxFlags m_forcedSandboxFlags; |
| 293 }; | 293 }; |
| 294 | 294 |
| 295 } // namespace WebCore | 295 } // namespace WebCore |
| 296 | 296 |
| 297 #endif // FrameLoader_h | 297 #endif // FrameLoader_h |
| OLD | NEW |