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

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

Issue 2751833002: Clean up DocumentWriter creation's FrameLoader interaction (Closed)
Patch Set: Clean up DocumentWriter creation's FrameLoader interaction Created 3 years, 9 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
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. 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 bool shouldTreatURLAsSameAsCurrent(const KURL&) const; 130 bool shouldTreatURLAsSameAsCurrent(const KURL&) const;
131 bool shouldTreatURLAsSrcdocDocument(const KURL&) const; 131 bool shouldTreatURLAsSrcdocDocument(const KURL&) const;
132 132
133 LocalFrameClient* client() const; 133 LocalFrameClient* client() const;
134 134
135 void setDefersLoading(bool); 135 void setDefersLoading(bool);
136 136
137 void didExplicitOpen(); 137 void didExplicitOpen();
138 138
139 // Callbacks from DocumentWriter 139 // Callbacks from DocumentWriter
140 void didInstallNewDocument(bool dispatchWindowObjectAvailable); 140 void didInstallNewDocument();
141
142 void didBeginDocument();
143 141
144 void receivedFirstData(); 142 void receivedFirstData();
145 143
146 String userAgent() const; 144 String userAgent() const;
147 145
148 void dispatchDidClearWindowObjectInMainWorld(); 146 void dispatchDidClearWindowObjectInMainWorld();
149 void dispatchDidClearDocumentOfWindowObject(); 147 void dispatchDidClearDocumentOfWindowObject();
150 void dispatchDocumentElementAvailable(); 148 void dispatchDocumentElementAvailable();
151 void runScriptsAtDocumentElementAvailable(); 149 void runScriptsAtDocumentElementAvailable();
152 150
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 327
330 SandboxFlags m_forcedSandboxFlags; 328 SandboxFlags m_forcedSandboxFlags;
331 329
332 bool m_dispatchingDidClearWindowObjectInMainWorld; 330 bool m_dispatchingDidClearWindowObjectInMainWorld;
333 bool m_protectProvisionalLoader; 331 bool m_protectProvisionalLoader;
334 }; 332 };
335 333
336 } // namespace blink 334 } // namespace blink
337 335
338 #endif // FrameLoader_h 336 #endif // FrameLoader_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698