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

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

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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/EmptyClients.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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 221
222 // Calls continueLoadAfterNavigationPolicy 222 // Calls continueLoadAfterNavigationPolicy
223 void loadWithNavigationAction(const NavigationAction&, FrameLoadType, PassRe fPtr<FormState>, 223 void loadWithNavigationAction(const NavigationAction&, FrameLoadType, PassRe fPtr<FormState>,
224 const SubstituteData&, ClientRedirectPolicy = NotClientRedirect, const A tomicString& overrideEncoding = nullAtom); 224 const SubstituteData&, ClientRedirectPolicy = NotClientRedirect, const A tomicString& overrideEncoding = nullAtom);
225 225
226 void detachFromParent(); 226 void detachFromParent();
227 void detachChildren(); 227 void detachChildren();
228 void closeAndRemoveChild(Frame*); 228 void closeAndRemoveChild(Frame*);
229 void detachClient(); 229 void detachClient();
230 230
231 void setHistoryItemStateForCommit(HistoryCommitType, bool isPushOrReplaceSta te = false, PassRefPtr<SerializedScriptValue> = 0); 231 void setHistoryItemStateForCommit(HistoryCommitType, bool isPushOrReplaceSta te = false, PassRefPtr<SerializedScriptValue> = nullptr);
232 232
233 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> state Object, UpdateBackForwardListPolicy, ClientRedirectPolicy); 233 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> state Object, UpdateBackForwardListPolicy, ClientRedirectPolicy);
234 234
235 void scheduleCheckCompleted(); 235 void scheduleCheckCompleted();
236 void startCheckCompleteTimer(); 236 void startCheckCompleteTimer();
237 237
238 Frame* m_frame; 238 Frame* m_frame;
239 FrameLoaderClient* m_client; 239 FrameLoaderClient* m_client;
240 240
241 // FIXME: These should be OwnPtr<T> to reduce build times and simplify 241 // FIXME: These should be OwnPtr<T> to reduce build times and simplify
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 275
276 bool m_didAccessInitialDocument; 276 bool m_didAccessInitialDocument;
277 Timer<FrameLoader> m_didAccessInitialDocumentTimer; 277 Timer<FrameLoader> m_didAccessInitialDocumentTimer;
278 278
279 SandboxFlags m_forcedSandboxFlags; 279 SandboxFlags m_forcedSandboxFlags;
280 }; 280 };
281 281
282 } // namespace WebCore 282 } // namespace WebCore
283 283
284 #endif // FrameLoader_h 284 #endif // FrameLoader_h
OLDNEW
« no previous file with comments | « Source/core/loader/EmptyClients.cpp ('k') | Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698