| 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 29 matching lines...) Expand all Loading... |
| 40 #include "core/loader/FrameLoaderTypes.h" | 40 #include "core/loader/FrameLoaderTypes.h" |
| 41 #include "core/loader/HistoryItem.h" | 41 #include "core/loader/HistoryItem.h" |
| 42 #include "platform/Timer.h" | 42 #include "platform/Timer.h" |
| 43 #include "platform/network/ResourceRequest.h" | 43 #include "platform/network/ResourceRequest.h" |
| 44 #include "wtf/Forward.h" | 44 #include "wtf/Forward.h" |
| 45 #include "wtf/HashSet.h" | 45 #include "wtf/HashSet.h" |
| 46 #include "wtf/OwnPtr.h" | 46 #include "wtf/OwnPtr.h" |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class Chrome; | |
| 51 class DOMWrapperWorld; | |
| 52 class DocumentLoader; | 50 class DocumentLoader; |
| 53 class Event; | |
| 54 class FetchContext; | 51 class FetchContext; |
| 55 class FormState; | 52 class FormState; |
| 56 class FormSubmission; | |
| 57 class Frame; | 53 class Frame; |
| 58 class FrameLoaderClient; | 54 class FrameLoaderClient; |
| 59 class IconController; | |
| 60 class NavigationAction; | 55 class NavigationAction; |
| 61 class Page; | |
| 62 class ProgressTracker; | 56 class ProgressTracker; |
| 63 class ResourceError; | 57 class ResourceError; |
| 64 class ResourceResponse; | |
| 65 class SecurityOrigin; | |
| 66 class SerializedScriptValue; | 58 class SerializedScriptValue; |
| 67 class SubstituteData; | 59 class SubstituteData; |
| 68 | 60 |
| 69 struct FrameLoadRequest; | 61 struct FrameLoadRequest; |
| 70 struct WindowFeatures; | |
| 71 | 62 |
| 72 bool isBackForwardLoadType(FrameLoadType); | 63 bool isBackForwardLoadType(FrameLoadType); |
| 73 | 64 |
| 74 class FrameLoader { | 65 class FrameLoader { |
| 75 WTF_MAKE_NONCOPYABLE(FrameLoader); | 66 WTF_MAKE_NONCOPYABLE(FrameLoader); |
| 76 public: | 67 public: |
| 77 static ResourceRequest requestFromHistoryItem(HistoryItem*, ResourceRequestC
achePolicy); | 68 static ResourceRequest requestFromHistoryItem(HistoryItem*, ResourceRequestC
achePolicy); |
| 78 | 69 |
| 79 FrameLoader(LocalFrame*); | 70 FrameLoader(LocalFrame*); |
| 80 ~FrameLoader(); | 71 ~FrameLoader(); |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 | 257 |
| 267 bool m_didAccessInitialDocument; | 258 bool m_didAccessInitialDocument; |
| 268 Timer<FrameLoader> m_didAccessInitialDocumentTimer; | 259 Timer<FrameLoader> m_didAccessInitialDocumentTimer; |
| 269 | 260 |
| 270 SandboxFlags m_forcedSandboxFlags; | 261 SandboxFlags m_forcedSandboxFlags; |
| 271 }; | 262 }; |
| 272 | 263 |
| 273 } // namespace blink | 264 } // namespace blink |
| 274 | 265 |
| 275 #endif // FrameLoader_h | 266 #endif // FrameLoader_h |
| OLD | NEW |