Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: Source/core/loader/FrameLoader.h

Issue 24045002: Remove some HTMLObjectElement logic from FrameLoader (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/loader/DocumentLoader.cpp ('k') | Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 DocumentLoader* policyDocumentLoader() const { return m_policyDocumentLoader .get(); } 131 DocumentLoader* policyDocumentLoader() const { return m_policyDocumentLoader .get(); }
132 DocumentLoader* provisionalDocumentLoader() const { return m_provisionalDocu mentLoader.get(); } 132 DocumentLoader* provisionalDocumentLoader() const { return m_provisionalDocu mentLoader.get(); }
133 FrameState state() const { return m_state; } 133 FrameState state() const { return m_state; }
134 FetchContext& fetchContext() const { return *m_fetchContext; } 134 FetchContext& fetchContext() const { return *m_fetchContext; }
135 135
136 const ResourceRequest& originalRequest() const; 136 const ResourceRequest& originalRequest() const;
137 void receivedMainResourceError(const ResourceError&); 137 void receivedMainResourceError(const ResourceError&);
138 138
139 bool willLoadMediaElementURL(KURL&); 139 bool willLoadMediaElementURL(KURL&);
140 140
141 void handleFallbackContent();
142
143 bool isHostedByObjectElement() const;
144 bool isLoadingMainFrame() const; 141 bool isLoadingMainFrame() const;
145 142
146 bool subframeIsLoading() const; 143 bool subframeIsLoading() const;
147 144
148 bool shouldTreatURLAsSrcdocDocument(const KURL&) const; 145 bool shouldTreatURLAsSrcdocDocument(const KURL&) const;
149 146
150 FrameLoadType loadType() const; 147 FrameLoadType loadType() const;
151 void setLoadType(FrameLoadType loadType) { m_loadType = loadType; } 148 void setLoadType(FrameLoadType loadType) { m_loadType = loadType; }
152 149
153 CachePolicy subresourceCachePolicy() const; 150 CachePolicy subresourceCachePolicy() const;
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 bool m_startingClientRedirect; 313 bool m_startingClientRedirect;
317 314
318 SandboxFlags m_forcedSandboxFlags; 315 SandboxFlags m_forcedSandboxFlags;
319 316
320 RefPtr<HistoryItem> m_requestedHistoryItem; 317 RefPtr<HistoryItem> m_requestedHistoryItem;
321 }; 318 };
322 319
323 } // namespace WebCore 320 } // namespace WebCore
324 321
325 #endif // FrameLoader_h 322 #endif // FrameLoader_h
OLDNEW
« no previous file with comments | « Source/core/loader/DocumentLoader.cpp ('k') | Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698