| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "platform/Timer.h" | 45 #include "platform/Timer.h" |
| 46 #include "platform/heap/Handle.h" | 46 #include "platform/heap/Handle.h" |
| 47 #include "platform/network/ResourceRequest.h" | 47 #include "platform/network/ResourceRequest.h" |
| 48 #include "wtf/Forward.h" | 48 #include "wtf/Forward.h" |
| 49 #include "wtf/HashSet.h" | 49 #include "wtf/HashSet.h" |
| 50 #include "wtf/OwnPtr.h" | 50 #include "wtf/OwnPtr.h" |
| 51 | 51 |
| 52 namespace blink { | 52 namespace blink { |
| 53 | 53 |
| 54 class DocumentLoader; | 54 class DocumentLoader; |
| 55 class Event; | |
| 56 class FetchContext; | 55 class FetchContext; |
| 57 class FormState; | |
| 58 class Frame; | 56 class Frame; |
| 59 class FrameLoaderClient; | 57 class FrameLoaderClient; |
| 60 class NavigationAction; | |
| 61 class ProgressTracker; | 58 class ProgressTracker; |
| 62 class ResourceError; | 59 class ResourceError; |
| 63 class SerializedScriptValue; | 60 class SerializedScriptValue; |
| 64 class SubstituteData; | 61 class SubstituteData; |
| 65 | 62 |
| 66 struct FrameLoadRequest; | 63 struct FrameLoadRequest; |
| 67 | 64 |
| 68 bool isBackForwardLoadType(FrameLoadType); | 65 bool isBackForwardLoadType(FrameLoadType); |
| 69 | 66 |
| 70 class FrameLoader final { | 67 class FrameLoader final { |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 275 |
| 279 bool m_didAccessInitialDocument; | 276 bool m_didAccessInitialDocument; |
| 280 Timer<FrameLoader> m_didAccessInitialDocumentTimer; | 277 Timer<FrameLoader> m_didAccessInitialDocumentTimer; |
| 281 | 278 |
| 282 SandboxFlags m_forcedSandboxFlags; | 279 SandboxFlags m_forcedSandboxFlags; |
| 283 }; | 280 }; |
| 284 | 281 |
| 285 } // namespace blink | 282 } // namespace blink |
| 286 | 283 |
| 287 #endif // FrameLoader_h | 284 #endif // FrameLoader_h |
| OLD | NEW |